为什么 String 用 + 运算符连接 null,并使用 concate() 方法抛出 NullPointerException
这是我的类,我在其中连接两个字符串。字符串与 using + 运算符连接,执行平稳,但使用方法抛出。null
NullPointerException
concate()
public class Test {
public static void main(String[] args) {
String str="abc";
String strNull=null;
System.out.println(strNull+str);
str.concat(strNull);
}
}
谁能告诉我它背后的原因??