码迷,mamicode.com
首页 > 其他好文 > 详细

4.8 this关键字

时间:2019-06-29 01:11:59      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:public   print   sys   stat   pre   相关   一个   构造   分配   

/**
 * 测试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关键字

标签:public   print   sys   stat   pre   相关   一个   构造   分配   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!