Styrow.dev
Question 56 of 247
Java Topic: General medium

What is Constructor?

Question

What is Constructor?

Answer

A constructor is a special method whose task is to initialize the object of its class.

It is special because its name is the same as the class name.

They do not have return types, not even “void” and therefore they cannot return values.

They cannot be inherited, though a derived class can call the base class constructor.

Constructor is invoked whenever an object of its associated class is created.