首页 > 其他 > 详细

4.8 this关键字

时间:2019-06-28 23:52:15      阅读:159      评论:0      收藏:0      [点我收藏+]
/**
 * 测试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关键字

原文:https://www.cnblogs.com/hankleo/p/11105119.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!