class PersonDemo3
{
public static void main(String[] args)
{
Person p1 = new Person(20); //this.指对象p1中的name,age.
Person p2 = new Person(25); //this.指对象p2中的name,age.
boolean b = p1.compare(p2);
System.out.println(b);
Person p = new Person("lisi");
p.speak();
p1.speak();
}
}
2................................
this语句 :用于构造函数之间进行互相调用。
this语句只能定义在构造函数的第一行。因为初始化要先执行。
class Person
{
private String name;
private int age;