多线程:返回三个数中的最大数

@Test
public void test1() throws ExecutionException, InterruptedException {
    //创建线城实例
    MaxNum m = new MaxNum(3, 5, 7);
    //创建FutrueTask实例
    FutureTask<Integer> ft = new FutureTask<Integer>(m);
    Thread thread = new Thread(ft);
    thread.start();
    System.out.println("最大的数为:" + ft.get());
}
class MaxNum implements Callable<Integer> {
    int i, j, k;
    public MaxNum(int i, int j, int k) {
        this.i = i;
        this.j = j;
        this.k = k;
    }
    @Override
    public Integer call() throws Exception {
        return Math.max(Math.max(i, j), k);
    }
}

#学习路径#
全部评论
感谢大佬分享!!!!
点赞 回复 分享
发布于 2022-01-12 20:33

相关推荐

点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务