在Java中实现多线程有两种方法:
public class MyThread extends Thread {
public void run() {
// 线程任务逻辑
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.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();
}
}
以上两种方法都可以实现多线程,但一般来说推荐使用第二种方法,因为Java是单继承的,如果继承了Thread类就无法再继承其他类了,而实现Runnable接口可以避免这个问题。