中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

詳解Java多線程處理List數據

發布時間:2020-10-25 03:10:16 來源:腳本之家 閱讀:220 作者:吃飯了嗎飯沒了秀 欄目:編程語言

實例1:

解決問題:如何讓n個線程順序遍歷含有n個元素的List集合

import java.util.ArrayList;
import java.util.List;
import org.apache.commons.lang3.ArrayUtils;

public class Test_4 {
/**
* 多線程處理list
*
* @param data 數據list
* @param threadNum 線程數
*/
public synchronized void handleList(List<String> data, int threadNum) {
int length = data.size();
int tl = length % threadNum == 0 ? length / threadNum : (length
/ threadNum + 1);

for (int i = 0; i < threadNum; i++) {
int end = (i + 1) * tl;
HandleThread thread = new HandleThread("線程[" + (i + 1) + "] ", data, i * tl, end > length ? length : end);
thread.start();
}
}

class HandleThread extends Thread {
private String threadName;
private List<String> data;
private int start;
private int end;

public HandleThread(String threadName, List<String> data, int start, int end) {
this.threadName = threadName;
this.data = data;
this.start = start;
this.end = end;
}

public void run() {
List<String> subList = data.subList(start, end)/*.add("^&*")*/;
System.out.println(threadName+"處理了"+subList.size()+"條!");
}

}

public static void main(String[] args) {
Test_4 test = new Test_4();
// 準備數據
List<String> data = new ArrayList<String>();
for (int i = 0; i < 6666; i++) {
data.add("item" + i);
}
test.handleList(data, 5);
System.out.println(ArrayUtils.toString(data));
}
}

實例2:

List多線程并發讀取讀取現有的list對象

//測試讀取List的線程類,大概34秒
package com.thread.list;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
public class Main {
  
  public static void main(String[] args) {
    
    List<String> list = new ArrayList<String>();
    Map<Long,Integer> map = new HashMap<Long,Integer>();

    for(int i = 0;i<1000;i++){
      list.add(""+i);
    }
    
    int pcount = Runtime.getRuntime().availableProcessors();    
    long start = System.currentTimeMillis();    
    
    for(int i=0;i<pcount;i++){
      
      Thread t = new MyThread1(list,map);
      map.put(t.getId(),Integer.valueOf(i));
      t.start();
      try {
        t.join();
      } catch (InterruptedException e) {       
        e.printStackTrace();
      }      
      // System.out.println(list.get(i));
    }    
    System.out.println("----"+(System.currentTimeMillis() - start));
  }  
}

//線程類
package com.thread.list;
 
import java.util.List;
import java.util.Map;
 
public class MyThread1 extends Thread {
 
  private List<String> list;
  private Map<Long,Integer> map;
  
  public MyThread1(List<String> list,Map<Long,Integer> map){
    this.list = list;
    this.map = map;
  }
  
  @Override
  public void run() {
    
    int pcount = Runtime.getRuntime().availableProcessors();
    int i = map.get(Thread.currentThread().getId());
    
    for(;i<list.size();i+=pcount){
      System.out.println(list.get(i));
    }       
  }  
}

實例3:

多線程分段處理List集合

場景:大數據List集合,需要對List集合中的數據同標準庫中數據進行對比,生成新增,更新,取消數據
解決方案:

  1. List集合分段,
  2. 動態創建線程池newFixedThreadPool
  3. 將對比操作在多線程中實現
public static void main(String[] args) throws Exception {

    // 開始時間
    long start = System.currentTimeMillis();
    List<String> list = new ArrayList<String>();

    for (int i = 1; i <= 3000; i++) {
      list.add(i + "");
    }
    // 每500條數據開啟一條線程
    int threadSize = 500;
    // 總數據條數
    int dataSize = list.size();
    // 線程數
    int threadNum = dataSize / threadSize + 1;
    // 定義標記,過濾threadNum為整數
    boolean special = dataSize % threadSize == 0;

    // 創建一個線程池
    ExecutorService exec = Executors.newFixedThreadPool(threadNum);
    // 定義一個任務集合
    List<Callable<Integer>> tasks = new ArrayList<Callable<Integer>>();
    Callable<Integer> task = null;
    List<String> cutList = null;

    // 確定每條線程的數據
    for (int i = 0; i < threadNum; i++) {
      if (i == threadNum - 1) {
        if (special) {
          break;
        }
        cutList = list.subList(threadSize * i, dataSize);
      } else {
        cutList = list.subList(threadSize * i, threadSize * (i + 1));
      }
      // System.out.println("第" + (i + 1) + "組:" + cutList.toString());
      final List<String> listStr = cutList;
      task = new Callable<Integer>() {

        @Override
        public Integer call() throws Exception {
          System.out.println(Thread.currentThread().getName() + "線程:" + listStr);
          return 1;
        }
      };
      // 這里提交的任務容器列表和返回的Future列表存在順序對應的關系
      tasks.add(task);
    }

    List<Future<Integer>> results = exec.invokeAll(tasks);

    for (Future<Integer> future : results) {
      System.out.println(future.get());
    }

    // 關閉線程池
    exec.shutdown();
    System.out.println("線程任務執行結束");
    System.err.println("執行任務消耗了 :" + (System.currentTimeMillis() - start) + "毫秒");
  }

以上所述是小編給大家介紹的Java多線程處理List數據詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

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

AI

龙井市| 长岛县| 石屏县| 方城县| 花莲市| 义马市| 灵寿县| 平度市| 雷州市| 桐乡市| 长子县| 略阳县| 三门县| 杂多县| 福鼎市| 屯留县| 冷水江市| 陈巴尔虎旗| 湄潭县| 滁州市| 韶山市| 股票| 新沂市| 东安县| 衡山县| 大关县| 湘阴县| 汶上县| 开化县| 普陀区| 泰顺县| SHOW| 海南省| 盐城市| 和林格尔县| 乌拉特后旗| 固始县| 沽源县| 黄梅县| 宕昌县| 来凤县|