在lambda中进行转换,在IntelliJ中标记为冗余

时间:2016-04-28 11:17:36

标签: intellij-idea lambda java-8

我正在编写一个小框架,需要使用instanceof来了解传递的回调类型。我已经知道instanceof的缺点,但是它在第三方库中使用,我不能改变那部分。

当编写lambdas并进行转换时,IntelliJ警告我,转换是多余的,但实际上它是需要的(它会影响结果),并且如果我明确声明lambda它就可以工作。你知道这是不是一个bug,也许我错过了什么或者有更好的方法来做到这一点?

示例:

public class Main {

    public interface Iface {
        String run();
    }

    public interface IfaceA extends Iface {
    }

    public interface IfaceB extends Iface {
    }

    public static void lambdaTest(Iface iface) {
        System.out.print(iface.run()+": ");
        if (iface instanceof IfaceA) {
            System.out.println("IfaceA");
        } else if (iface instanceof IfaceB) {
            System.out.println("IfaceB");

        } else {
            System.out.println("Iface");

        }
    }

    public static void main(String[] args) {
        lambdaTest((IfaceA)() -> "Casted to A");
        lambdaTest((IfaceB)() -> "Casted to B");
        lambdaTest(() -> "Not Casted");

        IfaceA lambda = () -> "Declared as A";
        lambdaTest(lambda);
    }
}

输出是:

Casted to A: IfaceA 
Casted to B: IfaceB 
Not Casted: Iface 
Declared as A: IfaceA

但在IntelliJ中,我收到警告:

enter image description here

enter image description here

还测试了javac,我没有得到任何警告:

 % javac Main.java -Xlint                                                                                                                                                                          !2525

1 个答案:

答案 0 :(得分:4)

在Intellij 2016.1.1(截至3月29日的145.597版本)中未显示任何警告。你可能正在使用旧版本的Idea,从那时起问题就解决了。

enter image description here