码迷,mamicode.com
首页 > 编程语言 > 详细

Java 静态方法不能重写

时间:2018-10-30 13:52:28      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:rgs   end   类的方法   方法   int   oid   不可   static   string   

强调

静态方法是属于类的,只存在一份,会被该类的所有对象共享

静态方法可以被子类继承,但是不可以被子类重写

class door{
    
}
class wood_Door extends door{
    
}

class math{
    static public door getMes() {
        return new door();
    }
}


public class HelloWorld extends math {
    
    public static wood_Door getMes() {
        return new wood_Door();
    }
    
    public static void main(String[] args) {
        math m=new HelloWorld();
        System.out.println(m.getMes());

    }
}
//输出为door@161cd475

子类不能通过继承重写父类的静态方法,但是可以隐藏父类的方法,如下


class door{
    
}
class wood_Door extends door{
    
}

class math{
    static public door getMes() {
        return new door();
    }
}


public class HelloWorld extends math {
    
    public static wood_Door getMes() {
        return new wood_Door();
    }
    
    public static void main(String[] args) {
        HelloWorld m=new HelloWorld();
        System.out.println(m.getMes());

    }
}
//输出为wood_Door@532760d8

Java 静态方法不能重写

标签:rgs   end   类的方法   方法   int   oid   不可   static   string   

原文地址:https://www.cnblogs.com/uestcman/p/9876310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!