SONAR:用方法引用替换此lambda

时间:2016-02-19 14:42:40

标签: java lambda java-8 sonarqube method-reference

Sonar告诉我"用方法参考"

替换这个lambda
window.location.href

这可能吗?我尝试了几件事,比如

public class MyClass {

    private List<SomeValue> createSomeValues(List<Anything> anyList) {
        return anyList //
               .stream() //
               .map(anything -> createSomeValue(anything)) //
               .collect(Collectors.toList());
   }

    private SomeValue createSomeValue(Anything anything) {
        StatusId statusId = statusId.fromId(anything.getStatus().getStatusId());
        return new SomeValue(anything.getExternId(), statusId);
    }

}

但我需要将方法更改为静态。而且我不是静态方法的忠实粉丝。

SonarQube的解释是:

  

方法/构造函数引用比使用lambdas更紧凑和可读,因此是首选。

1 个答案:

答案 0 :(得分:15)

是的,您可以使用this::createSomeValue

private List<SomeValue> createSomeValues(List<Anything> anyList) {
    return anyList //
            .stream() //
            .map(this::createSomeValue) //
            .collect(Collectors.toList());
}

这种method reference称为"Reference to an instance method of a particular object"。在这种情况下,您指的是实例createSomeValue的方法this

是否&#34;更好&#34;或者不是使用lambda表达式是一个意见问题。但是,您可以参考this answer撰写的Brian Goetz,它解释了为什么首先在语言中添加方法引用的原因。