Java语言this的用法

作者: CCCA | 来源:发表于2016-04-11 22:26 被阅读87次

    Java中的this的用法

    用类名定义一个变量的时候,定义的应该只是一个引用,外面可以通过这个引用来访问这个类里面的属性和方法,那们类里面是够也应该有一个引用来访问自己的属性和方法纳?呵呵,JAVA提供了一个很好的东西,就是 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!

    1. 把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的构造函数。

    1. 注意匿名类和内部类中的中的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。

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

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

    值得注意的是:
    1:在构造调用另一个构造函数,调用动作必须置于最起始的位置。
    2:不能在构造函数以外的任何函数内调用构造函数。
    3:在一个构造函数内只能调用一个构造函数。

    这里是归纳总结!!!

    相关文章

      网友评论

        本文标题:Java语言this的用法

        本文链接:https://www.haomeiwen.com/subject/ssbilttx.html