91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java多線程題目的解決方案

發布時間:2021-10-29 16:05:38 來源:億速云 閱讀:128 作者:柒染 欄目:編程語言

本篇文章為大家展示了java多線程題目的解決方案,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

在iteye上看到的一道多線程的題目,參考了一下網友的實現,那Eclipse調試通過,算是對JAVA5的并發庫有個大致的了解,分享出來,歡迎園里的同學拍磚。

題目:

要求用三個線程,按順序打印1,2,3,4,5.... 71,72,73,74, 75.

線程1先打印1,2,3,4,5, 然后是線程2打印6,7,8,9,10, 然后是線程3打印11,12,13,14,15. 接著再由線程1打印16,17,18,19,20....以此類推, 直到線程3打印到75。

分析:感覺出題人是要考察一下你是否能夠很好的控制多線程,讓他們有序的進行。

1、線程池:3個線程,需要使用并發庫的線程池

2、鎖(lcok):在打印的時候,只允許一個線程進入,其他的線程等待

下面的主要的代碼:

import java.util.HashMap;  import java.util.Map;  import java.util.concurrent.CountDownLatch;  import java.util.concurrent.ExecutorService;  import java.util.concurrent.Executors;  import java.util.concurrent.locks.Condition;  import java.util.concurrent.locks.Lock;  import java.util.concurrent.locks.ReentrantLock;   public class NumberPrinter {       private Lock lock = new ReentrantLock();       private Condition c1 = lock.newCondition();      private Condition c2 = lock.newCondition();      private Condition c3 = lock.newCondition();       private Map<Integer, Condition> condtionContext =           new HashMap<Integer, Condition>();       public NumberPrinter() {          condtionContext.put(Integer.valueOf(0), c1);          condtionContext.put(Integer.valueOf(1), c2);          condtionContext.put(Integer.valueOf(2), c3);      }            private int count = 0;               public void print(int id) {          lock.lock();          try {              while(count*5 < 75) {                  int curID = calcID();                  if (id == curID) {                      for (int i = 1; i<=5; i++) {                          System.out.print(count*5 +i+ ",");                      }                      System.out.println();                      count++;                      int nextID = calcID();                      Condition nextCondition = condtionContext.get(                              Integer.valueOf(nextID));                      //通知下一線程                      nextCondition.signal();                  } else {                      Condition condition = condtionContext.get(                              Integer.valueOf(id));                      condition.await();                  }              }              //通知線程結束              for(Condition c : condtionContext.values()) {                  c.signal();              }          } catch (Exception e) {              e.printStackTrace();          } finally {              lock.unlock();          }      }            private int calcID() {          // TODO Auto-generated method stub          return count % 3;      }        /**       * @param args       */     public static void main(String[] args) {          ExecutorService executor = Executors.newFixedThreadPool(3);          final CountDownLatch latch = new CountDownLatch(1);             final NumberPrinter printer = new NumberPrinter();           for (int i = 0; i < 3; i++) {                 final int id = i;              executor.submit(new Runnable() {                  @Override                 public void run() {                      // TODO Auto-generated method stub                      try {                          latch.await();                      } catch (InterruptedException e) {                          // TODO Auto-generated catch block                          e.printStackTrace();                      }                      printer.print(id);                  }              });          }          System.out.println("三個任務開始順序打印數字。。。。。。");           latch.countDown();          executor.shutdown();      }  }

上述內容就是java多線程題目的解決方案,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

中阳县| 合江县| 永嘉县| 繁昌县| 久治县| 井研县| 宜宾县| 滕州市| 张北县| 白水县| 尤溪县| 门源| 华宁县| 龙岩市| 射洪县| 彰武县| 高州市| 新津县| 民乐县| 共和县| 绥德县| 开江县| 青川县| 岳阳县| 南充市| 阳东县| 新巴尔虎左旗| 张家口市| 林甸县| 山东| 临湘市| 乌兰察布市| 枞阳县| 独山县| 河南省| 竹北市| 古田县| 健康| 长兴县| 汉川市| 台中县|