I am just starting my story with Java, however I have experience with OOP with Python. I have the following class hierarchy:
class A {
public A() {};
public A(final java.util.Map dict) {};
}
class B extends A {
}
public class Main {
public static void main() {
java.util.Map d = new java.util.HashMap();
B b = new B(d);
}
}
The attached code causes the following error:
Main.java:16: error: constructor B in class B cannot be applied to given types;
B b = new B(d);
^
required: no arguments
found: Map
reason: actual and formal argument lists differ in length
1 error
What I expect, since the required constructors are already defined in the base class, there is no need to define another constructor. Why do I need to define one for the subclass, as they do nothing special but call super()? Is there some special reason why the java compiler wants me to define a constructor in a child class?
source
share