共计 476 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中创建子线程可以有两种方式:
- 继承 Thread 类并重写 run() 方法:
public class MyThread extends Thread {@Override
public void run() {// 子线程的具体逻辑
}
}
public static void main(String[] args) {MyThread myThread = new MyThread();
myThread.start(); // 启动子线程
}
- 实现 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() 方法来启动子线程。
丸趣 TV 网 – 提供最优质的资源集合!
正文完