在Java中,可以通过两种方式启动多线程:
示例代码:
class MyThread extends Thread {
@Override
public void run() {
// 在此处编写你希望在新线程中运行的代码
System.out.println("我是一个新线程");
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start();
}
}
示例代码:
class MyRunnable implements Runnable {
@Override
public void run() {
// 在此处编写你希望在新线程中运行的代码
System.out.println("我是一个新线程");
}
}
public class Main {
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
}
}
注意:实现Runnable接口的方式更受推荐,因为Java不支持多重继承,而实现接口可以使类继承其他类。