skill20 发表于 2014-5-6 21:44 String s1 = "abc"; // s1指向的内存中只有一个对象abc。 String s2 = new String("abc"); // s2指向的内容 ...