您需要括号,否则解释如下:
String test = ("test" + testInteger) == null ? "(null)" : testInteger.toString();
有关运算符及其优先级的列表,请参见此处。另请注意该页面顶部的警告:
注意:甚至有可能混淆时,请使用显式括号。
欢迎分享,转载请注明来源:内存溢出
您需要括号,否则解释如下:
String test = ("test" + testInteger) == null ? "(null)" : testInteger.toString();
有关运算符及其优先级的列表,请参见此处。另请注意该页面顶部的警告:
注意:甚至有可能混淆时,请使用显式括号。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)