设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 重新 试卷 文件
当前位置: 首页 > 运营中心 > 建站资源 > 优化 > 正文

Java线程池实现原理与技术,看这一篇就够了(4)

发布时间:2019-04-01 12:30 所属栏目:21 来源:程序员柯南
导读:ThreadPoolExecutor最重要的构造方法如下: publicThreadPoolExecutor(intcorePoolSize,intmaximumPoolSize,longkeepAliveTime,TimeUnitunit,BlockingQueueworkQueue,ThreadFactorythreadFactory,RejectedExecution

ThreadPoolExecutor最重要的构造方法如下:

  1. public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) 

方法参数如下:

Java线程池实现原理与技术,看这一篇就够了

ThreadPoolExecutor的使用示例,通过execute()方法提交任务。

  1. public static void main(String[] args) { 
  2.         ThreadPoolExecutor executor = new ThreadPoolExecutor(4, 5, 0, TimeUnit.SECONDS, new LinkedBlockingQueue<>()); 
  3.         for (int i = 0; i < 10; i++) { 
  4.             executor.execute(new Runnable() { 
  5.                 @Override 
  6.                 public void run() { 
  7.                     System.out.println(Thread.currentThread().getName()); 
  8.                 } 
  9.             }); 
  10.         } 
  11.         executor.shutdown(); 
  12.     } 

或者通过submit()方法提交任务

  1. public static void main(String[] args) throws ExecutionException, InterruptedException { 
  2.         ThreadPoolExecutor executor = new ThreadPoolExecutor(4, 5, 0, TimeUnit.SECONDS, new LinkedBlockingQueue<>()); 
  3.         List<Future> futureList = new Vector<>(); 
  4.         //在其它线程中执行100次下列方法 
  5.         for (int i = 0; i < 100; i++) { 
  6.             futureList.add(executor.submit(new Callable<String>() { 
  7.                 @Override 
  8.                 public String call() throws Exception { 
  9.                     return Thread.currentThread().getName(); 
  10.                 } 
  11.             })); 
  12.         } 
  13.         for (int i = 0;i<futureList.size();i++){ 
  14.             Object o = futureList.get(i).get(); 
  15.             System.out.println(o.toString()); 
  16.         } 
  17.         executor.shutdown(); 
  18.     } 

运行结果:

  1. ... 
  2. pool-1-thread-4 
  3. pool-1-thread-3 
  4. pool-1-thread-2 

下面主要讲解ThreadPoolExecutor的构造方法中workQueue和RejectedExecutionHandler参数,其它参数都很简单。

3.2 workQueue任务队列

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读