I have a class \"ChildClass\" that extends the class \"ParentClass\". Rather than completely replace the constructor for the parent class, I want to call the parent class\'s
To invoke a specific parent-class constructor, put super(param1, param2, ...) as the first statement in the child-class constructor body.
super(param1, param2, ...)