随笔分类 -  Java

Java
摘要:Java中线程的状态定义在java.lang.Thread类中的一个枚举中。 1 public enum State { 2 /** 3 * Thread state for a thread which has not yet started. 4 */ 5 NEW, 6 7 /** 8 * Th 阅读全文
posted @ 2019-09-11 09:01 穆默仙僧 阅读(434) 评论(0) 推荐(0)