通过Thread类创建线程
Posted Eleanor123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Thread类创建线程相关的知识,希望对你有一定的参考价值。
package day16; public class ThreadTest extends Thread { @Override public void run() { //run方法线程体 for (int i = 1; i <= 6; i++) { System.out.println("run方法线程:" + i); } } public static void main(String[] args) { //创建一个线程 ThreadTest thread1 = new ThreadTest(); //开启线程:start() thread1.start(); //main主线程 for (int i = 1; i <= 30; i++) { System.out.println("主线程:" + i); } } }
运行的结果是并发执行,穿插打印,执行结果如下:
欢迎批评指正,提出问题,谢谢!
以上是关于通过Thread类创建线程的主要内容,如果未能解决你的问题,请参考以下文章