在Java中配置空字符串为什么要用下面的方法呢?我希望NullPointerException被扔出去。String s = null;s = s + "hello";System.out.println(s); // prints "nullhello" 查看完整描述