多线程编程之实现Callable接口

发布时间:2024年01月17日

基本步骤

  • 定义一个类实现Callable接口
  • 重写这个类的call方法
  • 创建这个类的对象
  • 把上一步创建的对象作为参数创建FutureTask对象
  • 把FutureTask对象作为参数创建Thread对象
  • 启动线程

代码实现

构造:

public class MyCallable implements Callable<Integer> {
        @Override
        public Integer call() throws Exception{

            return new Random().nextInt();
        }
}

测试:

public class TestCallable {
    public static void main(String[] args) throws ExecutionException, InterruptedException {
        MyCallable myCallable=new MyCallable();
        FutureTask<Integer> futureTask=new FutureTask<Integer>(myCallable);
        Thread thread = new Thread(futureTask);
        thread.start();
        Integer integer = futureTask.get();
        System.out.println(integer);

    }

}

结果:
在这里插入图片描述

文章来源:https://blog.csdn.net/qq_45706306/article/details/135654664
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。