gpt4 book ai didi

java - 消除 lambda 中函数接口(interface)的歧义

转载 作者:行者123 更新时间:2023-12-02 15:20:06 26 4
gpt4 key购买 nike

假设这样:

ExecutorService service = ...;

// somewhere in the code the executorService is used this way:
service.submit(() -> { ... });

lambda 表达式默认为Callable
有没有办法让它实例化一个Runnable

感谢您的帮助。

最佳答案

您可以将其声明为 Runnable,或使用强制转换:

Runnable r = () -> { ... };
executorService.submit(r);

executorService.submit((Runnable) () -> { ... });

关于java - 消除 lambda 中函数接口(interface)的歧义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34671292/

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