本帖最后由 木木赤赤 于 2013-11-26 10:59 编辑
class Demo extends Thread { publicvoid run() { for(intx=0; x<60;x++) System.out.println("demorun--"+x); } } class ThreadDemo { publicstatic void main(String[] args) { Demod= new Demo(); d.start(); //d,run for(intx=0; x<60;x++) System.out.println("hello--"+x); } }
直接调用d.run();方法,和通过d.start();调用run方法有什么区别,都会产生什么效果?
|