this代表它所在函数所属对象的引用。
简单说:哪个对象在调用this所在的函数,this就代表哪个对象。
this的应用:
当定义类中功能时,该函数内部要用到调用该函数的对象时,这时用this来表示这个对象。
但凡本类功能内部使用到了本类对象,都用this表示。
this语句:
用于构造函数之间进行互相调用。如:this(name);
thi语句只能定义在构造函数的第一行。因为初始化要先执行。
对this的概括总结:
this的两种用法:1、用于区分同名变量的情况,说的成员和局部同名的时候;2、用于构造函数间调用。
注:一般函数不能直接调用构造函数,因为this语句不能用在一般函数中,只能用在构造函数间。- class Person
- {
- private String name;
- private int age;
- Person(int age)//局部变量时age,成员变量也是age
- {
- this.age = age;//this能够很好区分
- }
- Person(String name)
- {
- this.name = name;//这里用this表示调用构造方法的对象
- }
- Person(String name,int age)
- {
- this.name = name;
- this.age = age;
- }
-
- public void speak()
- {
- System.out.println("name="+name+"...age="+age);
- show();
- }
- public void show()
- {
- System.out.println(this.name);
- }
- }
复制代码 |