在Java中,有两种方法可以创建多线程:
- 继承Thread类:创建一个类继承Thread类,并重写run()方法来实现线程的执行逻辑。然后通过创建该类的实例对象并调用start()方法来启动线程。
public class MyThread extends Thread { public void run() { // 线程执行逻辑 } } public class Main { public static void main(String[] args) { MyThread thread = new MyThread(); thread.start(); } }
- 实现Runnable接口:创建一个实现Runnable接口的类,并实现run()方法来实现线程的执行逻辑。然后通过将该实现类的实例对象传递给Thread类的构造方法来创建线程。
public 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(); } }
这两种方法都可以用来创建多线程,但是推荐使用实现Runnable接口的方法,因为Java只支持单继承,如果继承了Thread类就无法继承其他类了,而实现Runnable接口可以避免这个问题。