What is constructor in Java?

In this tutorial, we will learn about the constructor of an object, how to create them, what is the difference between the default constructor and the constructor we define and final what is the overloaded constructor?

Definition of the constructor

In Java, the constructor is a special method, which is used to initialize and return the object of the class to which it is defined. The constructor will have the same name as the class it defines, and they do not define a return value.

For example:

In the example above, we have defined a constructor for the Student object, as you can see that it has no return type and that its name is the same as the class to which it is defined.

When an object is initialized by calling its constructor with the new operator, it invokes the superclass constructor and all instance variables are initialized with their default values. Back to the above example, when initializing the Student object by calling:

then the value of the age variable in the Student object will have a default value of type int to 0.


Default constructor

If in an object we do not define a constructor, by default, Java will add a default constructor to our object.

For example, I defined the Student object as follows:

At this point, I can initialize the Student object by:

Obviously, although I do not define any constructors in the Student object, I can still initialize this object.

The default constructor does not contain any parameters, and when called to initialize an object, it also calls the constructor of the superclass and initializes the instance variables.

In the case, we have defined a constructor for the object:

Java will not automatically add the default constructor, and then if we try to initialize the object using the default constructor, then the compile error will happen:

What is constructor in Java?


Defines a constructor

We can define a constructor for any object so that all properties of the object include methods, instance variables can be called according to our definition.

For example:

We can use four access modifiers to define a constructor, and thus we can limit the scope of object access from other objects.

What happens if we define a constructor with a return value type? As such, Java treats it as a normal method rather than as a constructor.

For example:

The Student object now has only a default constructor added by Java. If we initialize the Student object with a name parameter, we get an error.

What is constructor in Java?


Overloaded constructor

What is an overloaded constructor? That is when we define multiple constructors for an object and each constructor will have different parameters in terms of both the parameter number and the data type of the parameter.

For example:

The rule to define an overloaded constructor is:

  • Constructors, as they say, must be defined using different parameters in terms of both the number of arguments and the type of the parameter.
  • The constructors are not defined differently only in the access modifier.

In the case where the object has multiple constructors and we want to call this constructor from another constructor then we must use the keyword this:

This statement to call this other constructor must be in the first line of the constructor, if it is after any statement, the code will be compiled error:

What is constructor in Java?

Add Comment