java怎么创建子线程

avatar
作者
筋斗云
阅读量:1

Java中创建子线程可以有两种方式:

  1. 继承Thread类并重写run()方法:
public class MyThread extends Thread {     @Override     public void run() {         // 子线程的具体逻辑     } }  public static void main(String[] args) {     MyThread myThread = new MyThread();     myThread.start(); // 启动子线程 } 
  1. 实现Runnable接口并实现run()方法:
public class MyRunnable implements Runnable {     @Override     public void run() {         // 子线程的具体逻辑     } }  public static void main(String[] args) {     MyRunnable myRunnable = new MyRunnable();     Thread thread = new Thread(myRunnable);     thread.start(); // 启动子线程 } 

无论使用哪种方式,都需要调用start()方法来启动子线程。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!