本文共 1202 字,大约阅读时间需要 4 分钟。
一、JAVA提供了一个很好的东西,就是 this 对象,它可以在类里面来引用这个类的属性和方法。
代码例子:
public class ThisDemo {
String name="Mick";
public void print(String name){
System.out.println("类中的属性 name="+this.name);
System.out.println("局部传参的属性="+name);
}
public static void main(String[] args) {
ThisDemo tt=new ThisDemo();
tt.print("Orson");
}
}
结果:
类中的属性 name=Mick
局部传参的属性=Orson
二、关于返回类自身的引用,《Thinking in Java》有个很经典的例子。
通过this 这个关键字返回自身这个对象然后在一条语句里面实现多次的操作,还是贴出来。
public classThisDemo {intnumber;
ThisDemo increment(){
number++;return this;
}private voidprint(){
System.out.println("number="+number);
}public static voidmain(String[] args) {
ThisDemo tt=newThisDemo();
tt.increment().increment().increment().print();
}
}
结果:
number=3
三、 一个类中定义两个构造函数,在一个构造函数中通过 this 这个引用来调用另一个构造函数,这样应该可以实现。
public classThisDemo {
String name;intage;publicThisDemo (){this.age=21;
}public ThisDemo(String name,intage){this();this.name="Mick";
}private voidprint(){
System.out.println("最终名字="+this.name);
System.out.println("最终的年龄="+this.age);
}public static voidmain(String[] args) {
ThisDemo tt=new ThisDemo("",0); //随便传进去的参数
tt.print();
}
}
结果:
最终名字=Mick
最终的年龄=21
总结一下:
1) this 关键字是类内部当中对自己的一个引用,可以方便类中方法访问自己的属性;
2)可以返回对象的自己这个类的引用,同时还可以在一个构造函数当中调用另一个构造函数。
转载地址:http://atspa.baihongyu.com/