gpt4 book ai didi

java - java如何区分Lambda中的Callable和Runnable?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:13:04 25 4
gpt4 key购买 nike

我得到了这个小代码来测试 Callable。但是,我发现编译器如何知道 Lambda 是用于可调用接口(interface)还是可运行接口(interface)非常令人困惑,因为它们的函数中都没有任何参数。

然而,IntelliJ 显示 Lambda 使用 Callable 的代码。

public class App {
public static void main(String[] args) throws InterruptedException {
ExecutorService executorService = Executors.newCachedThreadPool();
executorService.submit(() ->{
System.out.println("Starting");
int n = new Random().nextInt(4000);
try {
Thread.sleep(n);
} catch (InterruptedException e) {
e.printStackTrace();
}finally {
System.out.println("Finished");
}
return n;
});
executorService.shutdown();
executorService.awaitTermination(1, TimeUnit.MINUTES );
}
}

最佳答案

请参阅 ExecutorService 的文档,其中有 2 submit具有一个参数的方法:

你的 lambda 给出一个输出,返回一些东西:

executorService.submit(() -> {
System.out.println("Starting");
int n = new Random().nextInt(4000);
// try-catch-finally omitted
return n; // <-- HERE IT RETURNS N
});

所以 lambda 必须是 Callable<Integer>这是一个快捷方式:

executorService.submit(new Callable<Integer>() {
@Override
public Integer call() throws Exception {
System.out.println("Starting");
int n = new Random().nextInt(4000);
// try-catch-finally omitted
return n;
}}
);

要比较,请尝试与 Runnable 相同你看到它的方法的返回类型是 void .

executorService.submit(new Runnable() {
@Override
public void run() {
// ...
}}
);

关于java - java如何区分Lambda中的Callable和Runnable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51848591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com