本帖最后由 ㄗ灬Night|K 于 2013-10-15 17:20 编辑
当d.start()开启新线程之后,主线程会不会偶尔也去运行run()方法中的代码呢?- 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方法。
-
- for(int x=0; x<60; x++)
- System.out.println("Hello World!--"+x);
复制代码 |