摘要:
String A =“hello”” String B =“hello”” String AA = new String("AA") String BB = new String("BB") 字符串常量池在方法区中 其中 变量A jvm先到字符串常量池中寻找如果没有就在字符串常量池中创建一个字符串H 阅读全文
摘要:
1 class Person{ 2 private String name ; 3 private int age; 4 public Person(String name,int age) { 5 this.name = name; 6 this.age = age; 7 } 8 // public int ... 阅读全文