Type a constructor that delegates to another with this(...)
Type a constructor that delegates to another with this(...)
Answer
Point() { this(0, 0); }
this(0, 0) calls the two-arg constructor. A this(...) call must be the first statement in the constructor.