摘要: 10 多线程 创建多线程之方式一 package demo01; //创建线程方式一:继承thread类,重写run方法,调用start开启线程 public class TestThread1 extends Thread{ @Override public void run() { //run方 阅读全文
posted @ 2021-01-18 12:29 爱笑的加油怪 阅读(42) 评论(0) 推荐(0)