面試之new創建對象和用字符串常量創建對象的區別

public class StringDemo2 { public static void main(String[] args) { String s1 = new String("hello"); String s2 = "hello"; System.out.println(s1 == s2);// false Syst
相關文章
相關標籤/搜索