What gets printed when a Window
object is instantiated using the default constructor?
public class Window {
private int size;
Window() {
this(100);
}
Window(int size) {
this(size, true);
}
Window(int size, boolean isOpen) {
this.size = size;
System.out.println("Window size: " + size + ", isOpen: " + isOpen);
}
}