摘要:
/** * @param args */ public static void main(String[] args) { String str1 = "welcome"; String str2 = new String("welcome"); System.out.println("---" + "welcome".hashCode() ); System.out.println("---" + str1.hashCode() + " " + (str1 == " 阅读全文