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

java 多线程-实现Callable接口

时间:2019-08-07 10:42:51      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:service   关闭   new   load()   pre   提交   mit   submit   inter   

  • 实现callable接口加泛型,即返回的值类型,默认为Object
  • 重写的call方法可以有返回值,可以抛出异常

    public class ThreadDownload implements Callable<Boolean> {

    public Boolean call() throws Exception
    {

    return true;

    }
    public static void main(String[]args) throws InterruptedException, ExecutionException
    {
    ThreadDownload a=new ThreadDownload();
    ThreadDownload b=new ThreadDownload();
    ThreadDownload c=new ThreadDownload();
    //创建执行服务
    ExecutorService ser =Executors.newFixedThreadPool(3);
    //提交执行
    Future<Boolean>result1=ser.submit(a);
    Future<Boolean>result2=ser.submit(b);
    Future<Boolean>result3=ser.submit(c);
    //获取结果
    boolean r1=result1.get();
    boolean r2=result2.get();
    boolean r3=result3.get();
    //关闭服务:
    ser.shutdownNow();
    }
    }

  • java 多线程-实现Callable接口

    标签:service   关闭   new   load()   pre   提交   mit   submit   inter   

    原文地址:https://blog.51cto.com/14437184/2427274

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