String s ="hello";
String s= new String ("hello");
String s1= new String("hello");
在上述情况下如何在内部创建字符串对象。
String s = null;
String s = new String (null); // I get a compilation error at this line
在上述情况下,我没有得到对象实例化。Java doc 说它创建了一个新的 obj / 使用原始参数作为字符串创建了一个新的 obj。
但我还是不清楚