1、this代表当前对象的意思(this就是谁调用了类的方法,this就是谁)。
private String name;
private int age;
public void call(String name){
//student调用call,这里的this就是student
System.out.println(name+this.name);//name+student.anme
System.out.println(this);
//lianxi.Student@4554617c
//@前面的就是包名.所在类。后面的16进制的地址值
}
//创建了一个对象student
Student student=new Student();
//student对象调用了call方法
//this就是谁调用了类的方法,this就是谁
student.call("张三");