知识点:
fyy_Image.png fyy_Image.png原理图:
fyy_Image.png代码示例:
/*
进程
多线程
*/
class Demo extends Thread {
public void run() {
for (int x = 0;x<60;x++)
System.out.println("demo run----"+x);
}
}
class ThreadDemo {
public static void main(String[] args) { // 主线程
Demo d = new Demo();//创建好了一个线程
d.start();//开启线程并执行该线程的run方法
//d.run(); //仅仅是对对象调用方法。而线程创建了,并没有运行。执行是单线程顺序结构
for (int x = 0;x<60;x++)
System.out.println("hello world!-------"+x);
}
}
网友评论