突然觉得静态方法不能被子类覆写,写个例子证明下吧_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 突然觉得静态方法不能被子类覆写,写个例子证明下吧

突然觉得静态方法不能被子类覆写,写个例子证明下吧

 2010/12/25 0:04:36  ldbjakyo  http://ldbjakyo.javaeye.com  我要评论(0)
  • 摘要:packagetest;/***@authorlidongbo*/publicclassFather{publicstaticvoidsay(){System.out.println("教训儿子!");}}packagetest;/***@authorlidongbo*/publicclassChildextendsFather{publicstaticvoidsay(){System.out.println("我很委屈!");}publicstaticvoidmain
  • 标签:方法 例子 静态方法
package test;

/**
 * @author lidongbo
 */
public class Father {

    public static void say(){
        System.out.println("教训儿子!");
    }
}



package test;

/**
 * @author lidongbo
 */
public class Child extends Father {


    public static void say(){
        System.out.println("我很委屈!");
    }
    
    public static void main(String[] args) {
        Father father=new Child();
        father.say();//相当于Father.say();,当然了,静态方法和Class一起分配的和具体实例没关系,当然覆盖不了了,我证明了我的猜测
    }
    
}


发表评论
用户名: 匿名