Advertisements
Advertisements
प्रश्न
Explain the following term:
Constructor overloading
What is meant by constructor overloading?
Explain the concept of constructor overloading with an example.
लघु उत्तरीय
उत्तर
- Constructor overloading refers to using multiple constructors with various argument lists under the same name.
- Example:
Cons() { } Cons(int x, int y) { } Cons(String s) { }
- The three constructors in the example share the same name, but differ in parameter types and number of values. Thus, they represent constructor overloading. The constructor invoked depends on the parameter list provided.
- Example:
Cons ob = new Cons("Hello World") // This will invoke the constructor, Cons(String s)
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 7: Constructors - EXERCISES [पृष्ठ ४१८]