摘要: java中父类的静态方法不能被重写Java中父类的静态方法确实不能被重写的,但是有的人可能去做实验发现在子类中去重写父类static方法时,并没什么问题。这里我来具体解释下。public class Parent {public static void add(){ System.out.println("=========Parent");}}public class Children extends Parent {public static void add(){ System.out.println("=========Children");}} 阅读全文
posted @ 2012-12-27 20:07 尼玛范爷 阅读(460) 评论(0) 推荐(0) 编辑