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