最近,我正在阅读Spring Framework的源代码。我不明白的地方在这里:
public Member getMember() {
// NOTE: no ternary expression to retain JDK <8 compatibility even when using
// the JDK 8 compiler (potentially selecting java.lang.reflect.Executable
// as common type, with that new base class not available on older JDKs)
if (this.method != null) {
return this.method;
}
else {
return this.constructor;
}
}
此方法是class的成员org.springframework.core.MethodParameter
。代码很容易理解,而注释却很难。
注意:即使使用JDK 8编译器,也没有三元表达式保留JDK <8兼容性(可能选择
java.lang.reflect.Executable
为通用类型,而新的基类在较旧的JDK上不可用)
if...else...
在这种情况下,使用三元表达式和使用构造之间有什么区别?