4.8 this关键字

Posted hankleo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4.8 this关键字相关的知识,希望对你有一定的参考价值。

/**
 * 测试this
 * @author Hank
 * 
 */

/*
创建一个对象分为如下四步:
1.分配对象空间,并将对象成员变量初始化为0或空
2.执行属性值的显示初始化
3.执行构造方法
4.返回对象的地址给相关的变量
*/

public class TestThis 
    int a,b,c;
    
    TestThis(int a,int b)
        this.a = a;
        this.b = b;
    
    
    TestThis(int a,int b,int c)
        this(a,b);
        this.c = c;
    
    
    void sing() 
        
    
    
    void eat() 
        this.sing(); //调用本类中的sing();
        System.out.println("你妈妈喊你回家吃饭!");
    
    
    public static void main(String[] args) 
        TestThis hi = new TestThis(2,3,4);
        hi.eat();
    

以上是关于4.8 this关键字的主要内容,如果未能解决你的问题,请参考以下文章

this关键字

this关键字的相关应用

如何理解 JavaScript 中的 this 关键字

this关键字

this关键字

this关键字