一.this的学习方法 1.使用this调用构造方法市一定放在构造方法的首行 2.使用this调用构造方法时一定流出调用的出口 public class MyClass { public MyClass(){ System.out.printf("调用无参数的构造方法"); } public MyClass(String name) { this(); System.out.printf("调用一个参数的构造方法"); } public MyClass(String…
一.String常用的方法: 1. == 实质比较两个对象的地址数值 String a = "hello" (hello为匿名对象) String a1 = "hello" String b = new String("hello") String b1 = new String("hello").intern String c = b; a == b ----------> false false的原因:ne…