最佳答案
为什么下面的代码可以工作? 我希望抛出一个 NullPointerException
。
String s = null;
s = s + "hello";
System.out.println(s); // prints "nullhello"