在Java中,有两种常见的方式来创建一个线程:
public class MyThread extends Thread {
public void run() {
// 线程执行的代码
}
public static void main(String[] args) {
MyThread myThread = new MyThread();
myThread.start();
}
}
public class MyRunnable implements Runnable {
public void run() {
// 线程执行的代码
}
public static void main(String[] args) {
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.start();
}
}
这两种方式都可以创建一个线程,并在其中执行特定的代码逻辑。在实际开发中,通常推荐使用实现Runnable接口的方式来创建线程,因为Java是单继承的语言,通过实现接口可以更好地灵活性和组合性。