Yes! Java supports constructor overloading . In constructor loading, we create multiple constructors with the same name but with different parameters types or with different no of parameters.
Read moreIs constructor overloaded automatically?
Default Constructor in Java Constructor overloading is done to initialize the member variables of the class in different ways . We can create as many overloaded constructors as we want. The only condition is that the overloaded constructors should differ in the number and the type of parameters that they take.
Read more