在Java中,有兩種方法可以創建多線程:
public class MyThread extends Thread {
public void run() {
// 線程執行邏輯
}
}
public class Main {
public static void main(String[] args) {
MyThread thread = new MyThread();
thread.start();
}
}
public class MyRunnable implements Runnable {
public void run() {
// 線程執行邏輯
}
}
public class Main {
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
}
}
這兩種方法都可以用來創建多線程,但是推薦使用實現Runnable接口的方法,因為Java只支持單繼承,如果繼承了Thread類就無法繼承其他類了,而實現Runnable接口可以避免這個問題。