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