Constructor « JTable « Java Swing Q&A





1. In Java, how can we know when super() is finished in constructor?    stackoverflow.com

AFAIK: When a subclass is created, all constructors implicitly or explicitly call super(). Example:

class subclass extends superclass {
    public subclass() {
        super(); ...