クラスをコンパイルしようとすると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");
}
}