在Java中,创建一个新线程有两种主要方法:
下面是两种方法的示例:
方法1:继承Thread类
class MyThread extends Thread {
public void run() {
// 在这里编写你的代码
System.out.println("线程正在运行...");
}
}
public class Main {
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start(); // 启动新线程
}
}
方法2:实现Runnable接口
class MyRunnable implements Runnable {
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(); // 启动新线程
}
}
这两种方法都可以创建一个新线程并启动它。你可以根据自己的需求选择合适的方法。