标签:end extend rri public 方法 nbsp ring color span
public class A { int x = 200; public void hello() { System.out.println("hello"); } //子类也定义了a,和sys int a = 10; public void sys() { System.out.println("我是父类中的方法"); } }
public class B extends A { int a = 20; @Override public void sys() { System.out.println(a); } public void foo() { super.sys(); System.out.println(super.a); } public static void main(String[] args) { //自身的属性,方法 B b = new B(); b.sys(); System.out.println(b.a); //继承的属性,方法, 先从自身去找,没有找到就到父类去找 b.hello(); System.out.println(b.x); //调用父类的属性和方法(super) b.foo(); } }
标签:end extend rri public 方法 nbsp ring color span
原文地址:https://www.cnblogs.com/moris5013/p/10921739.html