FutureTask是Future和Callable的结合体。传统的代码是这样写的
Future f = executor.submit(new Callable());
然后通过Future来取得计算结果。但是,若开启了多个任务,我们无从知晓哪个任务最先结束,因此,若要实现“当某任务结束时,立刻做一些事情,例如记录日志”这一功能,就需要写一些额外的代码。
FutureTask正是为此而存在,他有一个回调函数protected void done(),当任务结束时,该回调函数会被触发。因此,只需重载该函数,即可实现在线程刚结束时就做一些事情。
- public class Test {
- public static void main(String[] args) {
- ExecutorService executor = Executors.newCachedThreadPool();
- for(int i=0; i<5; i++) {
- Callable<String> c = new Task();
- MyFutureTask ft = new MyFutureTask(c);
- executor.submit(ft);
- }
- executor.shutdown();
- }
-
- }
-
- class MyFutureTask extends FutureTask<String> {
-
- public MyFutureTask(Callable<String> callable) {
- super(callable);
- }
-
- @Override
- protected void done() {
- try {
- System.out.println(get() + " 线程执行完毕!~");
- } catch (InterruptedException | ExecutionException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
-
- }
-
- class Task implements Callable<String> {
-
- @Override
- public String call() throws Exception {
- Random rand = new Random();
- TimeUnit.SECONDS.sleep(rand.nextInt(12));
- return Thread.currentThread().getName();
- }
- }
已有 0 人发表留言,猛击->> 这里<<-参与讨论
ITeye推荐