首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

this 与 方法重写 的烦恼!

2012-01-05 
this 与 方法重写 的烦恼!!!求助!!Java codeclass Father{private void hello(){System.out.println(hell

this 与 方法重写 的烦恼!!!求助!!

Java code
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();     }}


结果会输出:hello father!;
这是怎么回事呢?

[解决办法]
继承了父类的方法包括私有的

热点排行