多線程中幾個特殊的類

来源:http://www.cnblogs.com/Dylansuns/archive/2017/05/17/6870096.html
-Advertisement-
Play Games

1、FutureTask 2、CyclicBarrier 3、CountDownLatch 4、Semaphore ...


1、FutureTask

 1 package com.ietree.basicskill.mutilthread.OtherClass;
 2 
 3 import java.util.concurrent.*;
 4 
 5 /**
 6  * Created by Administrator on 2017/5/17.
 7  */
 8 public class UseFuture implements Callable<String> {
 9 
10     private String para;
11 
12     public UseFuture(String para){
13         this.para = para;
14     }
15 
16     /**
17      * 這裡是真實的業務邏輯,其執行可能很慢
18      */
19     @Override
20     public String call() throws Exception {
21         //模擬執行耗時
22         Thread.sleep(5000);
23         String result = this.para + "處理完成";
24         return result;
25     }
26 
27     //主控制函數
28     public static void main(String[] args) throws Exception {
29         String queryStr = "query";
30         //構造FutureTask,並且傳入需要真正進行業務邏輯處理的類,該類一定是實現了Callable介面的類
31         FutureTask<String> future = new FutureTask<String>(new UseFuture(queryStr));
32 
33         FutureTask<String> future2 = new FutureTask<String>(new UseFuture(queryStr));
34         //創建一個固定線程的線程池且線程數為1,
35         ExecutorService executor = Executors.newFixedThreadPool(2);
36         //這裡提交任務future,則開啟線程執行RealData的call()方法執行
37         //submit和execute的區別: 第一點是submit可以傳入實現Callable介面的實例對象, 第二點是submit方法有返回值
38 
39         Future f1 = executor.submit(future);        //單獨啟動一個線程去執行的
40         Future f2 = executor.submit(future2);
41         System.out.println("請求完畢");
42 
43         try {
44             //這裡可以做額外的數據操作,也就是主程式執行其他業務邏輯
45             System.out.println("處理實際的業務邏輯...");
46             Thread.sleep(1000);
47         } catch (Exception e) {
48             e.printStackTrace();
49         }
50         //調用獲取數據方法,如果call()方法沒有執行完成,則依然會進行等待
51         System.out.println("數據:" + future.get());
52         System.out.println("數據:" + future2.get());
53 
54         executor.shutdown();
55     }
56 
57 
58 }

2、CyclicBarrier

 1 package com.ietree.basicskill.mutilthread.OtherClass;
 2 
 3 import java.io.IOException;
 4 import java.util.Random;
 5 import java.util.concurrent.BrokenBarrierException;
 6 import java.util.concurrent.CyclicBarrier;
 7 import java.util.concurrent.ExecutorService;
 8 import java.util.concurrent.Executors;
 9 
10 /**
11  * Created by Administrator on 2017/5/17.
12  */
13 public class UseCyclicBarrier {
14 
15     static class Runner implements Runnable {
16         private CyclicBarrier barrier;
17         private String name;
18 
19         public Runner(CyclicBarrier barrier, String name) {
20             this.barrier = barrier;
21             this.name = name;
22         }
23         @Override
24         public void run() {
25             try {
26                 Thread.sleep(1000 * (new Random()).nextInt(5));
27                 System.out.println(name + " 準備OK.");
28                 barrier.await();
29             } catch (InterruptedException e) {
30                 e.printStackTrace();
31             } catch (BrokenBarrierException e) {
32                 e.printStackTrace();
33             }
34             System.out.println(name + " Go!!");
35         }
36     }
37 
38     public static void main(String[] args) throws IOException, InterruptedException {
39         CyclicBarrier barrier = new CyclicBarrier(3);  // 3
40         ExecutorService executor = Executors.newFixedThreadPool(3);
41 
42         executor.submit(new Thread(new Runner(barrier, "zhangsan")));
43         executor.submit(new Thread(new Runner(barrier, "lisi")));
44         executor.submit(new Thread(new Runner(barrier, "wangwu")));
45 
46         executor.shutdown();
47     }
48 
49 }

3、CountDownLatch

 1 package com.ietree.basicskill.mutilthread.OtherClass;
 2 
 3 import java.util.concurrent.CountDownLatch;
 4 
 5 /**
 6  * Created by Administrator on 2017/5/17.
 7  */
 8 public class UseCountDownLatch {
 9 
10     public static void main(String[] args) {
11 
12         final CountDownLatch countDown = new CountDownLatch(2);
13 
14         Thread t1 = new Thread(new Runnable() {
15             @Override
16             public void run() {
17                 try {
18                     System.out.println("進入線程t1" + "等待其他線程處理完成...");
19                     countDown.await();
20                     System.out.println("t1線程繼續執行...");
21                 } catch (InterruptedException e) {
22                     e.printStackTrace();
23                 }
24             }
25         },"t1");
26 
27         Thread t2 = new Thread(new Runnable() {
28             @Override
29             public void run() {
30                 try {
31                     System.out.println("t2線程進行初始化操作...");
32                     Thread.sleep(3000);
33                     System.out.println("t2線程初始化完畢,通知t1線程繼續...");
34                     countDown.countDown();
35                 } catch (InterruptedException e) {
36                     e.printStackTrace();
37                 }
38             }
39         });
40         Thread t3 = new Thread(new Runnable() {
41             @Override
42             public void run() {
43                 try {
44                     System.out.println("t3線程進行初始化操作...");
45                     Thread.sleep(4000);
46                     System.out.println("t3線程初始化完畢,通知t1線程繼續...");
47                     countDown.countDown();
48                 } catch (InterruptedException e) {
49                     e.printStackTrace();
50                 }
51             }
52         });
53 
54         t1.start();
55         t2.start();
56         t3.start();
57     }
58 }

4、Semaphore

 1 package com.ietree.basicskill.mutilthread.OtherClass;
 2 
 3 import java.util.concurrent.ExecutorService;
 4 import java.util.concurrent.Executors;
 5 import java.util.concurrent.Semaphore;
 6 
 7 /**
 8  * Created by Administrator on 2017/5/17.
 9  */
10 public class UseSemaphore {
11 
12     public static void main(String[] args) {
13         // 線程池
14         ExecutorService exec = Executors.newCachedThreadPool();
15         // 只能5個線程同時訪問
16         final Semaphore semp = new Semaphore(5);
17         // 模擬20個客戶端訪問
18         for (int index = 0; index < 20; index++) {
19             final int NO = index;
20             Runnable run = new Runnable() {
21                 public void run() {
22                     try {
23                         // 獲取許可
24                         semp.acquire();
25                         System.out.println("Accessing: " + NO);
26                         //模擬實際業務邏輯
27                         Thread.sleep((long) (Math.random() * 10000));
28                         // 訪問完後,釋放
29                         semp.release();
30                     } catch (InterruptedException e) {
31                     }
32                 }
33             };
34             exec.execute(run);
35         }
36 
37         try {
38             Thread.sleep(10);
39         } catch (InterruptedException e) {
40             e.printStackTrace();
41         }
42         //System.out.println(semp.getQueueLength());
43         // 退出線程池
44         exec.shutdown();
45     }
46 }

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 200 OK 請求成功。一般用於GET與POST請求 301 Moved Permanently 永久移動。請求的資源已被永久的移動到新URI,返回信息會包括新的URI,瀏覽器會自動定向到新URI。今後任何新的請求都應使用新的URI代替 302 Found 臨時移動。與301類似。但資源只是臨時被移 ...
  • 分享一個VBA的一個把一個sheet中的多個table(每一個table又hyperlinks),分配在不同的sheet中的方法,做這個真的也是耗費了不少的腦細胞。 Option Explicit ’這個是一個好習慣 ’第一種方法,通過currentregion來判斷區域,但是不是很保險 Sub G ...
  • 本節探討Java中的動態代理,介紹其用法和基本實現原理,利用它實現簡單的AOP框架 ...
  • 一、從石油工程師到IT入門 本人是石油工程師,長期在中東兩伊邊境油田工作,常年漂泊在外。眾所周知,石油行業環境艱苦,長石油的地方不是在鳥不拉屎的沙漠,深山老林,就是在驚濤駭浪的海上平臺。記得第一次到伊拉克邊境的時候,里三層,外三層全是雇佣軍,警察和士兵把手,連井場都不能隨處亂走,因為聽說兩伊戰爭的時 ...
  • https://msdn.microsoft.com/en-us/library/d4cfawwc.aspx For the latest documentation on Visual Studio 2017, see Visual Studio 2017 Documentation. Resou ...
  • 最近對 newlib 中的啟動代碼 crt0 產生了興趣,於是就分析了下其代碼。crt0 的源碼位於 libgloss/arm/crt0.S,為了相容各種 ARM 架構,crt0.S 中有大量的條件判斷巨集定義,對於只關心 ARMv7e-M 的我來說很是痛苦。剛好手上有個基於 STM32F412 的 ...
  • 作業 1: 員工信息表程式,實現增刪改查操作 可進行模糊查詢,語法至少支持下麵3種: select name,age from staff_table where age > 22 select * from staff_table where dept = "IT" select * from s ...
  • 第一次寫博客這玩意,不太會,算了,直接粘代碼吧。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...