A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© java陈辉 中级黑马   /  2014-1-18 23:16  /  1240 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

下面这段程序执行的结果为什么是"MyThread running"、"Thread Test"、"MyThread running",而不是"MyThread running"、"MyThread running"、"Thread Test"。求解释:
class MyThread extends Thread{
        public void run(){
                try {
                        Thread.currentThread().sleep(3000);
                } catch (InterruptedException e) {
                }
                System.out.println("MyThread running");
        }
}
public class ThreadTest{
        public static void main(String argv[]) {
                 MyThread t = new  MyThread();
                t.run();
                t.start();
                System.out.println("Thread Test");
          }
}



1 个回复

倒序浏览
主线程先强到了cpu的执行权。。t线程后抢到的。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马