标签:lap 构造方法 xxx strong end one 函数 子类 ext
Java构造函数使用方法:
继承(inheritance)中的构造函数:
例子:
1 class A { 2 protected void print(String s) { 3 System.out.println(s); 4 } 5 A() { 6 print("A()"); 7 } 8 public void f() { 9 print("A:f()"); 10 } 11 } 12 13 class B extends A{ 14 B(){ 15 print("B()"); 16 }
//重写了class A中的f() 17 public void f() { 18 print("B:f()"); 19 } 20 public static void main(String arg[]) { 21 B b = new B(); 22 b.f(); 23 } 24 }
分析输出结果,体会上面几点。
例子输出结果:
1 A() 2 B() 3 B:f()
标签:lap 构造方法 xxx strong end one 函数 子类 ext
原文地址:http://www.cnblogs.com/lovechao/p/6719047.html