this 与 方法重写 的烦恼!!!求助!!
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(); }}