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 runnable = new MyRunnable();
Thread thread = new Thread(runnable);
thread.start();
}
}
public class Main {
public static void main(String[] args) {
Thread thread = new Thread() {
public void run() {
// 线程执行的代码
}
};
thread.start();
}
}
public class Main {
public static void main(String[] args) {
Thread thread = new Thread(() -> {
// 线程执行的代码
});
thread.start();
}
}
这些方式都可以创建并启动线程,但使用Runnable接口或Lambda表达式创建线程对象更为常见和灵活,因为Java不支持多重继承,而实现Runnable接口可避免这个限制,并且可以在需要时重用实现了Runnable接口的对象。