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
You should use the super keyword.
public ChildClass(...) { super(...); }