this constructor – JAVA

this constructor provides us the facility to invoked another constructor of the same class from within a constructor. e.g:      this(); And “this()” must be the first statement in constructor. …