Overloading in Java
Overloading is a rule where multiple methods and constructors with the same name are defined together within the class.Overloading is of two types: Constructor and Method overloading.Constructor overloading is the concept in which a class has multiple constructors with the same name but are different in terms of parameters and data type of parameters. It enables you to create objects with different initializations based on the given parameters.
Please visit at https://quipoin.com/view/Java/JavaOverloading