Java.SE01.多線程_案例02__Java

來源:互聯網
上載者:User

 1.線程池主要作用: ①控制線程數量 ②重用線程

package day01;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;/** * 線程池主要作用: * 1:控制線程數量 * 2:重用線程 * @author 愛吃木魚的貓 */public class Demo01 {public static void main(String[] args) {ExecutorService threadPool=Executors.newFixedThreadPool(2);//容量為2的線程池for(int i=0;i<4;i++){Runnable runn = new Runnable(){public void run(){try{Thread t= Thread.currentThread();System.out.println("任務"+t.getName()+":開始...");Thread.sleep(3000);System.out.println("任務"+t.getName()+":結束");}catch(Exception e){System.out.println("線程被中斷了!");}}};threadPool.execute(runn);//System.out.println("指派了一個任務"+i);}threadPool.shutdown();//停止//threadPool.shutdownNow();//立即停止System.out.println("停止了線程池");}}

從結果可以看出:4個線程中2個可以先進入線程池中,剩下2個阻塞等待中,只要常量池中一旦有一個完成的剩下的便運行一個;

shutdown後,如果還有未完成的就繼續完成(左圖結果);

shutdownNow後,即使沒有完成也要強制停止(右圖結果)




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.