Java对String类型有特殊处理,String s = "hello world"等价于String s = new String("hello world");。String不可修改,因而令s=新字符串相当于令s=new String(新字符串)。