码迷,mamicode.com
首页 > 编程语言 > 详细

Executor--线程的执行器

时间:2015-07-10 19:06:49      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:并发   编程   executor   线程   

Java SE5的java.util.concurrent包中的执行器(Executor)用来管理Thread对象,从而简化并发编程。

关灯线程:

public class LiftOffThread implements Runnable {

    protected int countDown = 10;
    private static int taskCount = 0;
    private final int id = taskCount++;

    public LiftOffThread() {
    }

    public String status() {
        return "#" + id + "(" + (countDown > 0 ? countDown : "LiftOff") + ")";
    }

    @Override
    public void run() {
        while (countDown-- > 0) {
            System.out.println(status());
        }
    }
}

使用Excutor一:

ExecutorService mService = Executors.newCachedThreadPool();
   for (int i = 0; i < 5; i++) {
        mService.execute(new LiftOffThread());
   }
   mService.shutdown();

运行结果:

技术分享

使用Excutor二:

//预先分配线程数
ExecutorService mService = Executors.newFixedThreadPool(3);
   for (int i = 0; i < 5; i++) {
        mService.execute(new LiftOffThread());
   }
   mService.shutdown();

运行结果:
技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

Executor--线程的执行器

标签:并发   编程   executor   线程   

原文地址:http://blog.csdn.net/pengkv/article/details/46833173

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!