types of constructors in java
Answers
Answered by
1
Answer:
Types of Constructors
There are three types of constructors: Default, No-arg constructor and Parameterized.
If you do not implement any constructor in your class, Java compiler inserts a default constructor into your code on your behalf.
Similar questions