摘要:
详解 阅读全文
摘要:
package com.chengguo.线程; /** * 观察线程的状态 */ public class Demo_20200518005_State { public static void main(String[] args) throws InterruptedException { / 阅读全文
摘要:
package com.chengguo.线程; /** * 测试线程的优先级 */ public class Demo_20200519001_Priority { public static void main(String[] args) { //主线程默认优先级 System.out.pri 阅读全文
摘要:
package com.chengguo.线程; /** * 线程守护【举例:上帝守护人类】 */ public class Demo_20200522001_Daemon { public static void main(String[] args) { //创建线程 God god = new 阅读全文