溫馨提示×

java如何定義線程的執(zhí)行體

小億
125
2023-08-24 21:54:59
欄目: 編程語言

在Java中,定義線程的執(zhí)行體可以通過兩種方式實(shí)現(xiàn):

  1. 實(shí)現(xiàn)Runnable接口:創(chuàng)建一個(gè)實(shí)現(xiàn)了Runnable接口的類,然后重寫該接口中的run()方法,該方法即為線程的執(zhí)行體。示例代碼如下:
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();
}
}
  1. 繼承Thread類:創(chuàng)建一個(gè)繼承自Thread類的子類,然后重寫父類中的run()方法,該方法即為線程的執(zhí)行體。示例代碼如下:
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()方法中的代碼邏輯。

0