-
John replied to the topic Why java doesn't support constructor inheritance? in the forum Java J2EE Programming 6 years, 3 months ago
In Java Constructors are not polymorphic.
When you are dealing with already constructed class, you could be handling a declared type of the object, or any of its sub classes.
In Java a constructor is always called on the specific type,eg new String(). A hypothetical subclasses have no role in this.