在Java中,定義線程類的方法是通過繼承Thread類或實現Runnable接口。
public class MyThread extends Thread {
@Override
public void run() {
// 線程執行的邏輯
}
}
public class MyRunnable implements Runnable {
@Override
public void run() {
// 線程執行的邏輯
}
}
使用這兩種方法定義線程類后,可以通過創建線程對象并調用start()方法來啟動線程。