日期:2014-05-20  浏览次数:20653 次

子类已经覆盖了父类的静态方法,应该运行子类的静态方法才对呀?
package hidestatic;
  class Base{
  void method(){
  system.out.println("method of Base");
}
  static void staticMethod(){
  System.out.println("static method of Base");
}
}
  public class Sub extends Base{
  void method(){
  System.out.println("method of Sub");
}
  static void staticMethod(){
  System.out.println("static method of Sub");
}

  public static void main(String args[]){
  Base sub1=new Sub();
  sub1.method();
  sub1.staticMethod();

  Sub sub2=new Sub();
  sub2.method();
  sub.staticMethod();
}
}

运行结果:method of Sub
  static method of Base
  method of Sub
  static method of Sub


  为什么:sub1.staticMethod()的运行结果是:static method of Base ? 按理说,子类已经覆盖父类的静态方法了,应该运行子类的静态方法才对呀,为什么还是调用父类的静态方法?

------解决方案--------------------
静态方法没有重写 可以用类名掉的,哪个类调用就找哪个类
------解决方案--------------------
静态方法是不会有多态性的。
静态方法的调用是在编译时就确定的。
比如 
Java code

class Person{
    public static void fun(){
        System.out.println("父类");
    }
}
class Child extends Person{
    public static void fun(){
        System.out.println("子类");
    }
}
public class Test{
    public static void main(String args[]){
        Person p = new Child();//因为左边的是Person类型,所以调用Person静态方法。
        p.fun();//静态方法的调用对象是在编译时就决定的。
    }
}

------解决方案--------------------
探讨
覆盖的方法的标志必须要和被覆盖的方法的标志完全匹配,才能达到覆盖的效果;
2、覆盖的方法的返回值必须和被覆盖的方法的返回一致;
3、覆盖的方法所抛出的异常必须和被覆盖方法的所抛出的异常一致,或者是其子类;
4、被覆盖的方法不能为private,否则在其子类中只是新定义了一个方法,并没有对其进行覆盖。

------解决方案--------------------
java中除了static方法final方法(private方法属于final方法)之外,其他方法都是后期绑定的
java变成思想p151页,第九行.