以下是一個簡單的Java多線程編程實例:
public class MultiThreadExample implements Runnable {
private String threadName;
public MultiThreadExample(String threadName) {
this.threadName = threadName;
}
@Override
public void run() {
System.out.println("線程 " + threadName + " 正在運行");
try {
for (int i = 5; i > 0; i--) {
System.out.println("線程 " + threadName + " :" + i);
Thread.sleep(1000);
}
} catch (InterruptedException e) {
System.out.println("線程 " + threadName + " 被中斷");
}
System.out.println("線程 " + threadName + " 運行結束");
}
public static void main(String[] args) {
Thread thread1 = new Thread(new MultiThreadExample("線程1"));
Thread thread2 = new Thread(new MultiThreadExample("線程2"));
thread1.start();
thread2.start();
}
}
在這個例子中,我們創建了一個MultiThreadExample
類實現了Runnable
接口。這個類包含了一個帶有線程名稱參數的構造函數和一個run
方法。run
方法定義了線程的執行邏輯,輸出線程名稱和每秒倒計時5次。
在main
方法中,我們創建了兩個線程對象,并分別傳入不同的線程名稱。然后,我們調用start
方法啟動線程。
當我們運行這個程序時,會看到兩個線程同時開始運行,并且輸出各自的倒計時。