日期:2014-05-20 浏览次数:20587 次
class Father{ private void hello(){ System.out.println("hello father!"); } public void f1(){ this.hello(); } } class Son extends Father{ public void hello(){ System.out.println("hello son!"); } } public class Test{ public static void main(String[] args){ student1.f1(); } }