在Java中,可以通過繼承Thread類或實現Runnable接口來創建線程。以下是Thread類常用方法的使用示例:
Thread thread = new MyThread(); // MyThread是自定義的繼承Thread類的線程類
thread.start(); // 啟動線程
public class MyThread extends Thread {
@Override
public void run() {
// 線程的具體執行邏輯
System.out.println("線程開始執行");
}
}
Thread thread = new MyThread();
thread.start(); // 輸出 "線程開始執行"
Thread thread = new MyThread();
thread.start();
try {
Thread.sleep(1000); // 休眠1秒
} catch (InterruptedException e) {
e.printStackTrace();
}
Thread thread = new MyThread();
thread.start();
try {
thread.join(); // 等待線程終止
} catch (InterruptedException e) {
e.printStackTrace();
}
Thread thread = new MyThread();
thread.start();
boolean isAlive = thread.isAlive(); // 判斷線程是否還活著
注意:以上示例中的MyThread是自定義的繼承Thread類的線程類,也可以使用實現Runnable接口的方式創建線程,然后將Runnable對象傳遞給Thread類的構造方法來創建線程。