Neither. You overload a constructor by writing multiple constructors in the same class, not in inherited classes. And constructors aren’t subject to overriding .
Read moreCan a constructor be overloaded in Java?
In addition to overloading methods, we can also overload constructors in java . Overloaded constructor is called based upon the parameters specified when new is executed.28 Haz 2021
Read more