Java编译器的一些怪癖是什么?

时间:2014-12-08 09:41:58

标签: java intellij-idea compilation compiler-errors javac

IntelliJ有一个检查设置,警告你可能会影响你的代码的“Javac怪癖”,但我还没有遇到任何问题。这些怪癖中有哪些是由IntelliJ或一般认可的?

1 个答案:

答案 0 :(得分:6)

我刚见过"使用' _'作为lambda参数名称是不允许的#34; (IntelliJ IDEA CE 14.0.2)。

public static <T> BinaryOperator<T> toLastElement() {
    return (_, current) -> current;
}