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(); } }
画图分析:
以上是关于this and super的主要内容,如果未能解决你的问题,请参考以下文章