线程 例子 关键词 start
// 代码
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(“程序执行完毕”);
}
}
测试结果: