博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
线程池
阅读量:6584 次
发布时间:2019-06-24

本文共 1736 字,大约阅读时间需要 5 分钟。

hot3.png

一、线程池:提供了一个线程队列,队列中保存着所有等待状态的线程。避免了创建与销毁额外开销,提高了响应的速度。

  
  二、线程池的体系结构:
      java.util.concurrent.Executor : 负责线程的使用与调度的根接口
          |--ExecutorService 子接口: 线程池的主要接口
              |--ThreadPoolExecutor 线程池的实现类
              |--ScheduledExecutorService 子接口:负责线程的调度
                  |--ScheduledThreadPoolExecutor :继承 ThreadPoolExecutor, 实现 ScheduledExecutorService
  
  三、工具类 : Executors 
  ExecutorService newFixedThreadPool() : 创建固定大小的线程池
  ExecutorService newCachedThreadPool() : 缓存线程池,线程池的数量不固定,可以根据需求自动的更改数量。
  ExecutorService newSingleThreadExecutor() : 创建单个线程池。线程池中只有一个线程
  
  ScheduledExecutorService newScheduledThreadPool() : 创建固定大小的线程,可以延迟或定时的执行任务。
    import java.util.ArrayList;
    import java.util.List;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
   
public class TestThreadPool {
    
    public static void main(String[] args) throws Exception {
        //1. 创建线程池
        ExecutorService pool = Executors.newFixedThreadPool(5);
        
        List<Future<Integer>> list = new ArrayList<>();
        
        for (int i = 0; i < 10; i++) {
            Future<Integer> future = pool.submit(new Callable<Integer>(){
                
                public Integer call() throws Exception {
                    int sum = 0;
                    
                    for (int i = 0; i <= 100; i++) {
                        sum += i;
                    }
                    
                    return sum;
                }
                
            });
            list.add(future);
        }
        
        pool.shutdown();
        
        for (Future<Integer> future : list) {
            System.out.println(future.get());
        }
        
        
        
        /*ThreadPoolDemo tpd = new ThreadPoolDemo();
        
        //2. 为线程池中的线程分配任务
        for (int i = 0; i < 10; i++) {
            pool.submit(tpd);
        }
        
        //3. 关闭线程池
        pool.shutdown();*/
    }
    
//    new Thread(tpd).start();
//    new Thread(tpd).start();
}
class ThreadPoolDemo implements Runnable{
    private int i = 0;
    
    
    public void run() {
        while(i <= 100){
            System.out.println(Thread.currentThread().getName() + " : " + i++);
        }
    }
}

转载于:https://my.oschina.net/u/2441327/blog/1833497

你可能感兴趣的文章
DataUml Design 教程4-代码生成
查看>>
CentOS 6.4 服务器版安装教程
查看>>
关于使用一个5升容器和一个6升容器量出3升水的一点解决办法
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
C/C++变量在内存中的位置以及初始化问题
查看>>
htons函数详解
查看>>
php获取本地ip-针对linux
查看>>
Python基于http的ddos攻击代码
查看>>
Netbeans java 远程调试
查看>>
深度学习
查看>>
难以执行,让你不相信自己的眼睛的SQL
查看>>
使用github管理iOS分布式项目开发
查看>>
Spark中文python文档
查看>>
Flip Grid View
查看>>
CK Calendar for iOS
查看>>
Popover View in iPhone
查看>>
D3Kit
查看>>
JSLockScreen
查看>>
判断ios中是否安装了某些软件以及那些软件处于运行等待状态
查看>>