摘要:
转https://www.cnblogs.com/lixuwu/p/7979480.html 阅读目录 使用 转https://www.cnblogs.com/lixuwu/p/7979480.html 阅读目录 使用 背景:ForkJoinPool的优势在于,可以充分利用多cpu,多核cpu的优势 阅读全文
摘要:
多线程的创建及启动 一、继承Thread类创建线程子类 1.在这子类中重写run方法,在run方法内写线程任务代码 2.创建该子类实例,即是创建了一个线程实例 3.调用该实例的start方法来启动该线程 二、建一个类去实现Runnable接口 1.该类去实现接口的run方法,run方法内写线程任务代 阅读全文