الرجوع
تسجيل الدخول

What is the area of a Room object when instantiated with the default constructor?

public class Room {
    int area;
    Room() {
        this(20);
    }
    Room(int area) {
        this.area = area;
    }
}