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

this小案例

时间:2016-06-08 18:56:43      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

public class Son extends Parent {
    
    public String name="jack";
    
    public void init(){
        super.init();
        System.out.println(this.name);
    }
    
    public static void main(String[] args) {
        Son son = new Son();
        son.init();  //init(son)
        System.out.println("## " + son.name);
        
        Parent p = new Son();
        System.out.println("** " + p.name);
        
    }

}

public class Parent {
    
    public String name="tom";

    public void init() {
        System.out.println(this.name);
    }
    
}
————————————————————————————————
public class Parent {

    public void init() {
        System.out.println("1 init parent");
        this.demo();
    }
    
    public void demo() {
        System.out.println("2 demo parent");
    }

}

public class Son extends Parent {
    
    public void init(){
        super.init();
        System.out.println("3 init son");
        this.demo();
    }
    
    public void demo() {
        System.out.println("4 demo Son");
    }
    
    public static void main(String[] args) {
        //当前运行类 Son
        Son son = new Son();
        son.init();  //init(son)
    }

}

以上两种情况运行结果是?为什么?(成员变量和成员方法)

tom,jack,##jack,**tom

1,4,3,4

 

this小案例

标签:

原文地址:http://www.cnblogs.com/cxzdy/p/5570919.html

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