用类名定义一个变量的时候,定义的应该只是一个引用,外面可以通过这个引用来访问这个类里面的属性和方法,那们类里面是够也应该有一个引用来访问自己的属性和方法纳?呵呵,Java提供了一个很好的东西,就是 this 对象,它可以在类里面来引用这个类的属性和方法。
1) this 关键字是类内部当中对自己的一个引用,可以方便类中方法访问自己的属性;
2)可以返回对象的自己这个类的引用,同时还可以在一个构造函数当中调用另一个构造函数;
- <span style="font-size:12px;">public class ThisTest {
-
- private int i=0;
-
-
-
- ThisTest(int i){
-
- this.i=i+1;
-
- System.out.println("Int constructor i——this.i: "+i+"——"+this.i);
-
- System.out.println("i-1:"+(i-1)+"this.i+1:"+(this.i+1));
-
-
-
- }
-
-
-
- ThisTest(String s){
-
- System.out.println("String constructor: "+s);
-
- }
-
-
-
- ThisTest(int i,String s){
-
- this(s);
-
-
-
-
-
-
-
-
-
- this.i=i++;
-
- System.out.println("Int constructor: "+i+"/n"+"String constructor: "+s);
-
- }
-
- public ThisTest increment(){
-
- this.i++;
-
- return this;
-
- }
-
- public static void main(String[] args){
-
- ThisTest tt0=new ThisTest(10);
-
- ThisTest tt1=new ThisTest("ok");
-
- ThisTest tt2=new ThisTest(20,"ok again!");
-
-
-
- System.out.println(tt0.increment().increment().increment().i);
-
-
-
-
-
- }
-
- }</span>
运行结果:
- <span style="font-size:12px;">Int constructor i——this.i: 10——11
-
- String constructor: ok
-
- String constructor: ok again!
-
- Int constructor: 21
-
- String constructor: ok again!
-
- 14</span>
总结一下,其实this主要要三种用法:
1、表示对当前对象的引用!
2、表示用类的成员变量,而非函数参数,注意在函数参数和成员变量同名是进行区分!其实这是第一种用法的特例,比较常用,所以那出来强调一下。
3、用于在构造方法中引用满足指定参数类型的构造器(其实也就是构造方法)。但是这里必须非常注意:只能引用一个构造方法且必须位于开始!
还有就是注意:this不能用在static方法中!所以甚至有人给static方法的定义就是:没有this的方法!虽然夸张,但是却充分说明this不能在static方法中使用!
转载:http://blog.csdn.net/chaoyu168/article/details/49795651