/**
	加了同步的线程启动方法
**/
public synchronized void start() {
        /**
	          * 新建的线程状态为 "NEW",此时状态属性threadStatus的值为0, .
	          *再次启动将会抛出 IllegalThreadStateException的异常
        **/
        if (threadStatus != 0 || this != me)
            throw new IllegalThreadStateException();
        group.add(this);
        start0();
        if (stopBeforeStart) {
	             stop0(throwableFromStop);
	      }
}