JAVA 线程状态 阻塞和等待 bloked 和 waiting 区别
JAVA 线程状态 阻塞和等待 bloked 和 waiting 区别NEW A thread that has not yet started is in this state. 一个被创建的线程,但是还没有调用start方法 一个正在被执行的线程的状态RUNNABLE A thread executing in the Java virtual machine is in this...