在Java中,创建多线程有两种主要方法:
示例:
class MyThread extends Thread {
public void run() {
// 线程执行的代码
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start();
}
}
示例:
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();
}
}
这两种方法都可以创建多线程,但实现方式略有不同。使用继承Thread类的方法更简单,但Java不支持多重继承,因此如果您的类已经继承了其他类,那么这种方法就不适用了。实现Runnable接口则更加灵活,因为Java支持多重继承,所以您可以在实现Runnable接口的同时继承其他类。