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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 杨杨 中级黑马   /  2013-3-11 11:08  /  984 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

在Thread类 中覆盖run方法。
但是在 别的方法中调用start 方法就会执行run方法里的代码,
自己查看源码
追到 public synchronized void start() {
        /**
  * This method is not invoked for the main method thread or "system"
  * group threads created/set up by the VM. Any new functionality added
  * to this method in the future may have to also be added to the VM.
  *
  * A zero status value corresponds to state "NEW".
         */
        if (threadStatus != 0)
            throw new IllegalThreadStateException();
        group.add(this);
        start0();
        if (stopBeforeStart) {
     stop0(throwableFromStop);
}
    }
private native void start0();
这里找不到原因了 ,估计是start0的原因谁能给解释一下啊
估计是

评分

参与人数 1技术分 +1 收起 理由
陈丽莉 + 1

查看全部评分

1 个回复

倒序浏览
明明是没解决在变成了 已解决
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马