0 votes
in JAVA by
What are the ways to achieve Constructor chaining in Java?

1 Answer

0 votes
by

We can achieve Constructor chaining by two ways:

• From base class using super()

• Within the same class using this()

...