摘要:
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");}} 阅读全文