1. In Java, how can we know when super() is finished in constructor? stackoverflow.comAFAIK: When a subclass is created, all constructors implicitly or explicitly call super(). Example: class subclass extends superclass { public subclass() { super(); ... |