标签:end err 测试结果 string bsp 主程序 ted http rac
// 代码
public class MyThread extends Thread {
public void run(){
for(int i=0;i<10;i++){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("MyThread"+i);
}
}
}
// 测试类
public class TestThread {
public static void main(String[] args) {
MyThread myt = new MyThread();
myt.start();//开辟了多条线程,代码同时执行
for(int i=0;i<10;i++){
try {
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("主程序"+i);
}
System.out.println("程序执行完毕");
}
}
测试结果:
标签:end err 测试结果 string bsp 主程序 ted http rac
原文地址:https://www.cnblogs.com/zhangmenghui/p/10549415.html