当我尝试编译Child
该类时,出现以下错误:
Child.java:2: method does not override or implement a method from a supertype
@Override
^
1 error
这是为什么 ?我尝试init
在子类中覆盖父类的。
class Parent {
public static void init() {
System.out.println("From the parent class");
}
}
class Child extends Parent{
@Override
public static void init() {
System.out.println("From the child class");
}
}