A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 李志鹏 中级黑马   /  2015-5-31 23:41  /  894 人查看  /  8 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

[code]this 关键字
this:代表的是一个对象。
         代表哪个对象呢?
         哪个对象调用this所在的函数,this就代表哪个对象。
         this就是当前对象的一个引用。
this:表现形式一:当局部变量和成员变量同名的时候,可以用this来区分。
     表现形式二:构造函数之间的调用可以使用this关键字,后面跟上小括号,指定具体的实参即可明确要调用的构造函数。
                                特殊情况:注意:调用本类中构造函数的this语句必须定义在构造函数的第一行
                                因为初始化动作要先完成
this什么时候用?
        当定义功能时,功能内部使用到了调用该功能的对象.
        这时就用this来表示。

8 个回复

倒序浏览
总结的不错。学习学习
回复 使用道具 举报
反正面向对象这片不好好理解真有点晕。。。。
回复 使用道具 举报
抱大腿了
回复 使用道具 举报
总结的不错,感觉有点晕
回复 使用道具 举报
:lol 我来踩踩
回复 使用道具 举报
总结得很不错的说
回复 使用道具 举报
java中的this随处可见,用法也多,现在整理有几点:
this
1、当全局变量跟局部变量重名时,表示使用全局变量(此时this指代本类对象)
例有一类class A{
    String name;
    void setName(String name){
        this.name = name;
    }
}
2、构造方法相互调用,此时this指代本类类名
注意this只能放在构造方法第一句
如class B{
    String name;
    B(){
       this("name");//会自动调用带String参数的构造方法
    }

    B(String name){
        this.name = name;
    }

}


1. this是指当前对象自己。
当在一个类中要明确指出使用对象自己的的变量或函数时就应该加上this引用。如下面这个例子中:

public class Hello {

    String s = "Hello";

    public Hello(String s){
        System.out.println("s = " + s);
        System.out.println("1 -> this.s = " + this.s);
        this.s = s;
        System.out.println("2 -> this.s = " + this.s);
    }

    public static void main(String[] args) {
    Hello x=new Hello("HelloWorld!");
    }
}



运行结果:

s = HelloWorld!
1 -> this.s = Hello
2 -> this.s = HelloWorld!


在这个例子中,构造函数Hello中,参数s与类Hello的变量s同名,这时如果直接对s进行操作则是对参数s进行操作。若要对类Hello的成员变量s进行操作就应该用this进行引用。运行结果的第一行就是直接对构造函数中传递过来的参数s进行打印结果; 第二行是对成员变量s的打印;第三行是先对成员变量s赋传过来的参数s值后再打印,所以结果是HelloWorld!

2. 把this作为参数传递
当你要把自己作为参数传递给别的对象时,也可以用this。如:

public class A {
  public A() {
    new B(this).print();
  }

  public void print() {
    System.out.println("Hello from A!");
  }
}

public class B {
  A a;
  public B(A a) {
    this.a = a;
  }

  public void print() {
    a.print();
    System.out.println("Hello from B!");
  }
}

运行结果:
  Hello from A!
  Hello from B!






在这个例子中,对象A的构造函数中,用new B(this)把对象A自己作为参数传递给了对象B的构造函数。


3. 注意匿名类和内部类中的中的this。
有时候,我们会用到一些内部类和匿名类,如事件处理。当在匿名类中用this时,这个this则指的是匿名类或内部类本身。这时如果我们要使用外部类的方法和变量的话,则应该加上外部类的类名。如下面这个例子:

public class A {
    int i = 1;

    public A() {
        Thread thread = new Thread() {
            public void run() {
                for(;;) {
                    A.this.run();
                    try {
                        sleep(1000);
                    } catch(InterruptedException ie) {     }

                }
           }
        }; //注意这里有;
        thread.start();
    }

    public void run() {
        System.out.println("i = " + i);
        i++;
    }

    public static void main(String[] args) throws Exception {
        new A();
    }
}








在上面这个例子中, thread 是一个匿名类对象,在它的定义中,它的 run 函数里用到了外部类的 run 函数。这时由于函数同名,直接调用就不行了。这时有两种办法,一种就是把外部的 run 函数换一个名字,但这种办法对于一个开发到中途的应用来说是不可取的。那么就可以用这个例子中的办法用外部类的类名加上 this 引用来说明要调用的是外部类的方法 run。


4。在构造函数中,通过this可以调用同一class中别的构造函数,如

public class Flower{
           Flower (int petals){}
           Flower(String ss){}
           Flower(int petals, Sting ss){
                //petals++;调用另一个构造函数的语句必须在最起始的位置
                this(petals);
               //this(ss);会产生错误,因为在一个构造函数中只能调用一个构造函数
           }
}


值得注意的是:
1:在构造调用另一个构造函数,调用动作必须置于最起始的位置。
2:不能在构造函数以外的任何函数内调用构造函数。
3:在一个构造函数内只能调用一个构造函数。
回复 使用道具 举报
谁调用那个方法,谁就可以调用 this。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马