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

this and super

时间:2017-06-22 00:13:10      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:print   display   style   open   color   images   code   fat   main   

技术分享
class FatherClass {
    public int value;
    public void f() {
        value = 100;
        System.out.println("FatherClass,value = " + value);
    }
}

class ChildClass extends FatherClass {
    public int value;
    public void f() {
        super.f();
        value = 200;
        System.out.println("ChildClass,value = " + value);
        System.out.println(value);
        System.out.println(super.value);
    }
}

public class Demo {
    public static void main(String[] args) {
        ChildClass cc = new ChildClass();
        cc.f();
    }
}
View Code

画图分析:

技术分享

 技术分享

 

this and super

标签:print   display   style   open   color   images   code   fat   main   

原文地址:http://www.cnblogs.com/BaiLaowu/p/7062072.html

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