亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

java語言

java線程池框架解析

時間:2024-09-11 23:38:57 java語言 我要投稿
  • 相關(guān)推薦

java線程池框架解析

  使用Java中成型的框架來幫助我們開發(fā)并發(fā)應(yīng)用即可以節(jié)省構(gòu)建項目的時間,也可以提高應(yīng)用的性能。以下是小編為大家搜索整理java線程池框架解析,希望能給大家?guī)韼椭?更多精彩內(nèi)容請及時關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!

  Java對象實例的鎖一共有四種狀態(tài):無鎖,偏向鎖,輕量鎖和重量鎖。原始脫離框架的并發(fā)應(yīng)用大部分都需要手動完成加鎖釋放,最直接的就是使用synchronized和volatile關(guān)鍵字對某個對象或者代碼塊加鎖從而限制每次訪問的次數(shù),從對象之間的競爭也可以實現(xiàn)到對象之間的協(xié)作。但是這樣手動實現(xiàn)出來的應(yīng)用不僅耗費時間而且性能表現(xiàn)往往又有待提升。

  一、線程池結(jié)構(gòu)圖

  二、示例

  定義線程接口

  6public class MyThread extends Thread {@Overridepublicvoid run() {System.out.println(Thread.currentThread().getName() + "正在執(zhí)行");}}

  1:newSingleThreadExecutor

  10ExecutorService pool = Executors. newSingleThreadExecutor();Thread t1 = new MyThread();Thread t2 = new MyThread();Thread t3 = new MyThread();//將線程放入池中進行執(zhí)行pool.execute(t1);pool.execute(t2);pool.execute(t3);//關(guān)閉線程池pool.shutdown();

  輸入結(jié)果:

  3pool-1-thread-1正在執(zhí)行pool-1-thread-1正在執(zhí)行pool-1-thread-1正在執(zhí)行

  2:newFixedThreadPool

  13ExecutorService pool = Executors.newFixedThreadPool(3);Thread t1 = new MyThread();Thread t2 = new MyThread();Thread t3 = new MyThread();Thread t4 = new MyThread();Thread t5 = new MyThread();//將線程放入池中進行執(zhí)行pool.execute(t1);pool.execute(t2);pool.execute(t3);pool.execute(t4);pool.execute(t5);pool.shutdown();

  輸入結(jié)果:

  4pool-1-thread-1正在執(zhí)行pool-1-thread-2正在執(zhí)行pool-1-thread-1正在執(zhí)行pool-1-thread-2正在執(zhí)行

  3 :newCachedThreadPool

  14ExecutorService pool = Executors.newCachedThreadPool();Thread t1 = new MyThread();Thread t2 = new MyThread();Thread t3 = new MyThread();Thread t4 = new MyThread();Thread t5 = new MyThread();//將線程放入池中進行執(zhí)行pool.execute(t1);pool.execute(t2);pool.execute(t3);pool.execute(t4);pool.execute(t5);//關(guān)閉線程池pool.shutdown();

  輸入結(jié)果:

  5pool-1-thread-2正在執(zhí)行pool-1-thread-4正在執(zhí)行pool-1-thread-3正在執(zhí)行pool-1-thread-1正在執(zhí)行pool-1-thread-5正在執(zhí)行

  4 :ScheduledThreadPoolExecutor

  14ScheduledExecutorService pool = Executors.newScheduledThreadPool(2);pool.scheduleAtFixedRate(new Runnable() {//每隔一段時間就觸發(fā)異常 @Override public void run() { //throw new RuntimeException(); System.out.println("================"); }}, 1000, 2000, TimeUnit.MILLISECONDS);pool.scheduleAtFixedRate(new Runnable() {//每隔一段時間打印系統(tǒng)時間,證明兩者是互不影響的 @Override public void run() { System.out.println("+++++++++++++++++"); }}, 1000, 2000, TimeUnit.MILLISECONDS);

  輸入結(jié)果:

  4================+++++++++++++++++++++++++++++++++++++++++++++++++++

  三、線程池核心參數(shù)

  corePoolSize : 池中核心的線程數(shù)

  maximumPoolSize : 池中允許的最大線程數(shù)。

  keepAliveTime : 當(dāng)線程數(shù)大于核心時,此為終止前多余的空閑線程等待新任務(wù)的最長時間。

  unit : keepAliveTime 參數(shù)的時間單位。

  workQueue : 執(zhí)行前用于保持任務(wù)的隊列。此隊列僅保持由 execute方法提交的 Runnable任務(wù)。

  threadFactory : 執(zhí)行程序創(chuàng)建新線程時使用的工廠。

  handler : 由于超出線程范圍和隊列容量而使執(zhí)行被阻塞時所使用的處理程序。

  ThreadPoolExecutor :Executors類的底層實現(xiàn)。

  3.1 任務(wù)排隊機制

  SynchonousQueue: 同步隊列,隊列直接提交給線程執(zhí)行而不保持它們,此時線程池通常是無界的

  LinkedBlockingQueue: 無界對列,當(dāng)線程池線程數(shù)達到最大數(shù)量時,新任務(wù)就會在隊列中等待執(zhí)行,可能會造成隊列無限膨脹

  ArrayBlockingQueue : 有界隊列,有助于防止資源耗盡,一旦達到上限,可能會造成新任務(wù)丟失

  注意:

  newSingleThreadExecutor、newFixedThreadPool使用的是LinkedBlockingQueue

  newCachedThreadPool 使用的是 SynchonousQueue

  newScheduledThreadPool使用的是 DelayedWorkQueue

  3.2 線程執(zhí)行流程

  3.3 線程大小確定:

  cpu密集型: 盡量少開線程,最佳線程數(shù) Ncpu+1

  io密集型:多開線程,2Ncpu

  混合型:根據(jù)情況而定,可以拆分成io密集和cou密集

【java線程池框架解析】相關(guān)文章:

JAVA多線程之線程間的通信方式解析07-14

java中通用的線程池實例代碼08-27

java多線程08-31

java的多線程09-09

java語言的多線程08-29

java線程的幾種狀態(tài)10-22

Java線程編程中的主線程詳細(xì)介紹09-05

關(guān)于Java多線程介紹09-09

java多線程-線程通信實例詳細(xì)解讀07-07

Java多線程的開發(fā)技巧10-16