在Java中,定義線程的執行體可以通過兩種方式實現:
public class MyRunnable implements Runnable {
@Override
public void run() {
// 線程的執行邏輯
System.out.println("線程執行體");
}
}
然后,可以通過創建一個Thread對象,并將該Runnable對象作為參數傳入,來創建一個線程,并調用start()方法啟動線程。示例代碼如下:
public class Main {
public static void main(String[] args) {
MyRunnable runnable = new MyRunnable();
Thread thread = new Thread(runnable);
thread.start();
}
}
public class MyThread extends Thread {
@Override
public void run() {
// 線程的執行邏輯
System.out.println("線程執行體");
}
}
然后,可以直接創建一個MyThread對象,并調用start()方法啟動線程。示例代碼如下:
public class Main {
public static void main(String[] args) {
MyThread thread = new MyThread();
thread.start();
}
}
無論使用哪種方式定義線程的執行體,最終線程會執行run()方法中的代碼邏輯。