2023年7月9日
摘要: 1 // 线程池execute方法执行流程 2 public void execute(Runnable command) { 3 // 非空判断,判断提交的任务是否为空 4 if (command == null) 5 throw new NullPointerException(); 6 // 阅读全文
posted @ 2023-07-09 18:20 啥123 阅读(79) 评论(0) 推荐(0) 编辑