What are Default Constructors in Java?
Answers
Answered by
0
it does not have any arguments or parameters .they are just use to initiliaze
the instance variables with their default values
Answered by
0
Answer:
a constructor that has no parameter is known as default constructor if we don't define a constructor in a class then compiler create default constructor for the class.
Similar questions