gpt4 book ai didi

lambda - Java8 Lambda 函数应用替代语法

转载 作者:行者123 更新时间:2023-12-02 17:24:43 26 4
gpt4 key购买 nike

当使用 lambda 函数变量时,是否可以使用 apply 调用函数。

Function<String, String> mesgFunction =  (name) -> "Property "+ name +" is not set in the environment";
Optional.ofNullable(System.getProperty("A")).orElseThrow(() -> new IllegalArgumentException(mesgFunction.apply("A")));
Optional.ofNullable(System.getProperty("B")).orElseThrow(() -> new IllegalArgumentException(mesgFunction.apply("B")));

mesgFunction.apply("A") 有更短的语法吗?我尝试了 mesgFunction("A") ,它提示该方法不存在。我错过了什么吗?没有更短的选择吗?

最佳答案

不,接口(interface)是函数式接口(interface)这一事实不允许任何替代的调用语法;它的方法像任何其他接口(interface)方法一样被调用。

但是你可以把更多的公共(public)代码分解出来,缩短重复的代码

Function<String, Supplier<IllegalArgumentException>> f = name ->
() -> new IllegalArgumentException("Property "+name+" is not set in the environment");
String valueA = Optional.of("A").map(System::getProperty).orElseThrow(f.apply("A"));
String valueB = Optional.of("B").map(System::getProperty).orElseThrow(f.apply("B"));

然而,这仍然比传统的没有优势

public static String getRequiredProperty(String name) {
String value = System.getProperty(name);
if (value == null) {
throw new IllegalArgumentException("Property "+name+" is not set in the environment");
}

return value;
}

String valueA = getRequiredProperty("A");
String valueB = getRequiredProperty("B");

它的优点是没有代码重复(尤其是关于常量 “A”“B”),因此意外不一致的空间更小。

关于lambda - Java8 Lambda 函数应用替代语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39603806/

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