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

溫馨提示×

溫馨提示×

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

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

編程中多線程的使用方法

發布時間:2021-06-30 16:42:19 來源:億速云 閱讀:183 作者:chen 欄目:大數據

這篇文章主要講解了“編程中多線程的使用方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“編程中多線程的使用方法”吧!

ptn多線程使用實例: 
    在ptn項目中由于網管系統抓取的tunnel數據量較大,每條tunnel都需要做相對于的業務處理, 傳統的for循環方式中每一個tunnel去依次執行,效率很慢
    現將大的tunnerl list拆分為n個list ,每個list都是一個線程,提高效率;
    詳情如下:
    

    jdk 自帶線程池結果管理器:ExecutorCompletionService 它將BlockingQueue 和Executor 封裝起來。然后使用ExecutorCompletionService.submit()方法提交任務。

    
    1.新建線程池
    ExecutorService exs = Executors.newFixedThreadPool(analysisThreadNum);

    2.線程池管理器,可以獲取多線程處理結果
    CompletionService<Map<String, Object>> completionService = new ExecutorCompletionService<>(exs);


    3.將一個list切分為多個list  均分tunnullist
    List<List<Tunnel>> averageAssign = CommUtils.averageAssign(tunnels, analysisThreadNum);
    
    4.遍歷averageAssign 均分list 
    List<Future<Map<String, Object>>> futureList = new ArrayList<>();
    for (List<Tunnel> list : averageAssign) {
        futureList.add(completionService.submit(new LogicPathOverlappedCheckTask(list, portNameLinkIdMap,tunnelClassifyMap, allNEs, allBoards, allTopoLines)));
    }            
    5.合并多線程處理結果
    for (int i = 1, curr = 0, length = futureList.size(); i <= length; i++) {
        // 采用completionService.take(),內部維護阻塞隊列,任務先完成的先獲取到
        Map<String, Object> result = completionService.take().get();
        lineNumber += MapUtils.getInteger(result, "lineNumber", 0);
        boardNumber += MapUtils.getInteger(result, "boardNumber", 0);
        neNumber += MapUtils.getInteger(result, "neNumber", 0);
        lineResultList.addAll((List<Map<String, Object>>) result.get("lineResultList"));
        boardResultList.addAll((List<Map<String, Object>>) result.get("boardResultList"));
        neResultList.addAll((List<Map<String, Object>>) result.get("neResultList"));
        curr += MapUtils.getInteger(result, "listSize");
        logger.debug("Thread : " + i + " is done. [" + curr + "/" + totailNumber+ "] tunnel logic path overlapped check is done ..");
    }
    6.關閉線程池
    exs.shutdown();

package com.hongrant.www.comm.service.impl;

import com.hongrant.www.comm.util.DateUtils;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.*;

/**
 * @author jy
 * @date 2019/4/8 17:27
 * ptn 邏輯同路由多線程使用借鑒 
 * 將一個list拆成多個list分別迭代處理每個list
 */
public class a {
    public static void main(String[] args) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//設置日期格式
        Date now = new Date();  String startTime = sdf.format(now);
        System.out.println("執行開始時間"+startTime);
        //準備數據
        List<String> list = new ArrayList<>();
        for (int i = 0; i <200000 ; i++) {
            list.add("str:"+i+",");
        }
//        method1(list);
        new a().method2(list);

    }
    public static void method1(List<String> list){
        //將String全部拼接展示,記錄所需時間
        String b = "";
        //使用String拼接而不用StringBuffer 制造耗時的現象
        for (String s : list) {
            b+=s;
        }
        System.out.println(b);
    }
    public  void method2(List<String> list){
        String str8="";
        ExecutorService exs= Executors.newFixedThreadPool(6);
        try {
            CompletionService<String> completionService = new ExecutorCompletionService<>(exs);
            List<Future<String>> futureList = new ArrayList<>();
            //均分 List<String>
            List<List<String>> avg=averageAssign(list,20);
            for (List<String> strings : avg) {
                //分開執行任務
                futureList.add(completionService.submit(new strAppendTask(strings)));
            }
            //合并處理結果
            for (int i = 1,curr=0,length=futureList.size(); i <=length; i++) {
                // 采用completionService.take(),內部維護阻塞隊列,任務先完成的先獲取到
                    String s = completionService.take().get();
                    System.out.println("completion:"+s);
                    curr+=s.length();
                    str8+=s;
                System.out.println("Thread :"+i+ "is done");
            }
            exs.shutdown();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (ExecutionException e) {
            e.printStackTrace();
        }finally {
            if(!exs.isShutdown()){
                exs.shutdown();
            }
        }
        System.out.println("str8="+str8);
        String endTime= DateUtils.getCurrentDateTime(DateUtils.DATE_TIME_FORMAT);
        System.out.println("執行結束時間"+endTime);
    }

    static class strAppendTask implements  Callable<String>{
        private List<String > list;
        public strAppendTask(List<String> strings){
            this.list=strings;
        }
        @Override
        public String call() throws Exception {
            String b = "";
            for (String s : list) {
                b+=s;
            }
            System.out.println("處理完成str="+b);
            return b;
        }
    }
    /**
     * 將一個list均分成n個list,主要通過偏移量來實現的
     *
     * @param source
     * @return
     */
    public static <T> List<List<T>> averageAssign(List<T> source, int n) {
        List<List<T>> result = new ArrayList<List<T>>();
        if (n == 1) {
            result.add(source);
            return result;
        }
        int remaider = source.size() % n; // (先計算出余數)
        int number = source.size() / n; // 然后是商
        int offset = 0;// 偏移量
        for (int i = 0; i < n; i++) {
            List<T> value = null;
            if (remaider > 0) {
                value = source.subList(i * number + offset, (i + 1) * number + offset + 1);
                remaider--;
                offset++;
            } else {
                value = source.subList(i * number + offset, (i + 1) * number + offset);
            }
            result.add(value);
        }
        return result;
    }
}

感謝各位的閱讀,以上就是“編程中多線程的使用方法”的內容了,經過本文的學習后,相信大家對編程中多線程的使用方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

西乌珠穆沁旗| 通山县| 泸州市| 曲周县| 青海省| 嘉义县| 炉霍县| 长子县| 灵宝市| 宝鸡市| 双辽市| 远安县| 临泽县| 抚顺市| 井冈山市| 赤峰市| 宁津县| 班戈县| 乳源| 银川市| 叶城县| 天峻县| 罗甸县| 轮台县| 自治县| 年辖:市辖区| 新巴尔虎左旗| 厦门市| 调兵山市| 东丰县| 南华县| 遂溪县| 石景山区| 家居| 若尔盖县| 南京市| 剑阁县| 嘉义市| 睢宁县| 沅江市| 南木林县|