gpt4 book ai didi

java - 什么都不做的 Lambda

转载 作者:IT老高 更新时间:2023-10-28 20:34:40 27 4
gpt4 key购买 nike

我需要一个函数接口(interface) Runnable 的 lambda 表达式,它什么都不做。我曾经有一个方法

private void doNothing(){
//Do nothing
}

然后使用 this::doNothing。但我找到了一种更短的方法来做到这一点。

最佳答案

对于 Runnable 接口(interface),你应该有类似的东西:

Runnable runnable = () -> {};

地点:

  • () 因为run方法没有接收到args
  • {} run 方法的主体,在这种情况下为空

之后就可以调用方法了

runnable.run();

关于java - 什么都不做的 Lambda,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30108450/

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