this and super

Posted

tags:

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

技术分享
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的主要内容,如果未能解决你的问题,请参考以下文章

this and super

super and this

片段中的 super.onCreateView

Android从Fragment跳转Activty

不立即分离片段

Eclipse 插件片段