相关代码 |
|
public class Example1 { public print() { System.out.print("这是父类的print方法"); } public Study() { System.out.print("这是父类Study方法"); } public Work() { System.out.print("这是父类Work方法"); } } 子类如下: public class Example2 extends Example1 { public print() { System.out.print("这是子类中的print方法"); } public Study() { System.out.print("这是子类中的Study方法"); } public static void main(String args[]) { Example2 ex=new Example2(); ex.print(); ex.Study(); ex.Work(); } }
相关资源 |
|