我有以下代码
public class Test {
public static void main(String[] args) {
Integer i1=null;
String s1=null;
String s2=String.valueOf(i1);
System.out.println(s1==null+" "+s2==null);//Compilation Error
System.out.println(s1==null+" ");//No compilation Error
System.out.println(s2==null+" ");//No compilation error
}
}
如果将两个布尔值与String
结合使用,为什么会出现编译错误编辑:编译错误是 对于参数类型boolean,null
,运算符==未定义答案 0 :(得分:6)
这是一个优先事项。我永远不会记得我头脑中的所有优先规则(我不会尝试),但我怀疑编译器试图将其解释为:
System.out.println((s1==(null+" "+s2))==null);
......这没有意义。
目前还不清楚你在期望这三行中的任何一行,但是你应该使用括号来让编译器和读者明白你的意图。例如:
System.out.println((s1 == null) + " " + (s2==null));
System.out.println((s1 == null) + " ");
System.out.println((s2 == null) + " ");
或者你可以使用局部变量更清楚:
boolean s1IsNull = s1 == null;
boolena s2IsNull = s2 == null;
System.out.println(s1IsNull + " " + s2IsNull);
System.out.println(s1IsNull + " ");
System.out.println(s2IsNull + " ");
答案 1 :(得分:2)
+
之前处理 ==
。
这会导致s1 == " " == null