devxlogo

Default Constructor is a Must When Instantiating Arrays

Default Constructor is a Must When Instantiating Arrays

When an array of object is instantiated, the default constructor (and only the default constructor) of each member is invoked automatically. If you define no constructors at all, the compiler will generate a default constructor for you. But if you define one or more constructors, none of which is a default constructor (i.e., constructor taking no arguments)

devx-admin

Share the Post: