0 votes
in JAVA by
How to call one constructor from the other constructor ?

With in the same class if we want to call one constructor from other we use this() method. Based on the

number of parameters we pass appropriate this() method is called.

Restrictions for using this method :

1) this must be the first statement in the constructor

2)we cannot use two this() methods in the constructor

Related questions

+1 vote
asked Jun 17, 2019 in JAVA by reins.robin
0 votes
asked Jun 17, 2019 in JAVA by reins.robin
...