newCachedThreadPool無上限線程池使用


1. newCachedThreadPool無上限線程池,   動態根據代碼添加線程,   如果線程空閑60秒沒有被使用,會自動關閉

 1 package ThreadTest;
 2 
 3 import java.util.concurrent.ExecutorService;
 4 import java.util.concurrent.Executors;
 5 
 6 public class Demo01 {
 7     public static void main(String[] args) {
 8         MyThread myThread = new MyThread();
 9         ExecutorService pool = Executors.newCachedThreadPool();
10         for(int i=0; i<40; i++) {
11             pool.execute(myThread);
12         }
13         pool.shutdown();
14     }
15 }
16 
17 class MyThread implements Runnable{
18     @Override
19     public void run() {
20         for(int i=0; i<30; i++) {
21             System.out.println(Thread.currentThread().getName());
22         }
23     }
24     
25 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM