-
Java Lover replied to the topic Why java doesn't support constructor inheritance? in the forum Java J2EE Programming 6 years, 6 months ago
You essentially do inherit the constuctors in the sense that you can simply call super if and when appropriate, it’s just that it would be error prone for reasons others have mentioned if it happened by default. The compiler can’t presume when it is appropriate and when it isn’t.
The job of the compiler is to provide as much flexibility as…Read more