• Java线程中带有返回值的线程Callable


    在Java5之前,线程是没有返回值的,常常为了“有”返回值,破费周折,而且代码很不好写。或者干脆绕过这道坎,走别的路了。现在Java终于有可返回值的任务(也可以叫做线程)了。

    可返回值的任务必须实现Callable接口,类似的,无返回值的任务必须Runnable接口。

    执行Callable任务后,可以获取一个Future的对象,在该对象上调用get就可以获取到Callable任务返回的Object了。

    下面是个很简单的例子:

    package com.lyc

    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;


    public class CallableFutureTest {


        public static void main(String[] args) throws ExecutionException, InterruptedException {
            CallableFutureTest test = new CallableFutureTest();
           
            // 创建一个线程池
            ExecutorService pool = Executors.newFixedThreadPool(2);
            // 创建两个有返回值的任务
            Callable c1 = test.new MyCallable("A");
            Callable c2 = test.new MyCallable("B");
           
            // 执行任务并获取Future对象
            Future f1 = pool.submit(c1);
            Future f2 = pool.submit(c2);
           
            // 从Future对象上获取任务的返回值,并输出到控制台
            System.out.println("----" + f1.get().toString());
            System.out.println("----" + f2.get().toString());
           
            // 关闭线程池
            pool.shutdown();
        }

        class MyCallable implements Callable {
            private String oid;

            MyCallable(String oid) {
                this.oid = oid;
            }

            public Object call() throws Exception {
                return oid + "任务返回的内容";
            }
        }
    }

  • 相关阅读:
    散列
    Studio 3T破解方式
    springboot整合elasticsearch时的版本问题:
    ElasticSearch6.4.1 【Rejecting mapping update to [posts] as the final mapping would have more than 1 type】
    IP地址查询API
    拉姆达表达式 追加 条件判断 Expression<Func<T, bool>>
    类 映射 遍历大全
    jquery load(URL,FUNCTION(){}) 异步加载页面
    LINQ to Entities 不识别方法的解决方案
    当实体类属性超多时候 映射给实体类属性赋值(拉姆达+实体类映射)
  • 原文地址:https://www.cnblogs.com/LCX/p/4509610.html
Copyright © 2020-2023  润新知