CONSTRUCTOR

Definition: Constructor is a special method which is used to construct an object or create an object for a class. Constructor does not return any value or does not have any Return type. Whenever an object of class is created using new operator constructor will be executed.

Why Contructor? We can use constructor to create object, without constructor we cannot create Object.

Rules to develop constructor:

  • Constructor named should be exactly same as Class name.

  • Constructor should not have return type, should always be non-static should not return any value.

  • Constructor is also called as Non-static initializer, which is used to initialize the object of a class.

  • No static and return type allowed.

  • Constructor should be there for every class.

  • If the programmer has not developed a constructor for class then there will be default constructor in that class.

Default Constructor: The constructor developed by the compiler at compile-time is called as Default constructor. If a programmer has not developed a constructor for class then compiler will develop the default constructor.

Note: Steps in Object creation

  • New operator will allocate the new address space randomly in the heap memory.

  • All the Non-Static members of class will be loaded onto the address space with default values.

  • Constructor body will be executed on Stack memory like a method.

  • Object address will be assigned to Reference variables.

Why Programmer should write Constructor if java provides Default Constructor?

If the programmer needs to initialize the instance variable then programmer can perform the initialization in Constructor. If the programmer wants to perform some start up activities whenever an object is created for the class, then programmer will reuse the Constructor body and all the startup code will be developed inside the Constructor.

Types of Constructor:

1) Parameterized Constructor: The Constructor which is developed with some arguments. Example: A(int I)

2) No-Arguments Constructor: The Constructor which is developed without arguments. Example: A()

Note: To create the object for a class we should utilize available Constructor of that class.

If programmer develops a Constructor for class then java does not provide a default Constructor.

Constructor Overloading: Developing multiple Constructors for a class with the variation in the Data-type, members and position of arguments is called Constructor overloading.

Output:

Main Starts

Running Constructor

Main Ends

Output:

Main Starts Running Demo1 constructor ------------ Running Demo1 constructor Main Ends

Output:

Main Starts Main Ends

Output:

Main Starts Main Ends -----------

Can we Override constructor?

NO, because constructor will not be inherited to sub class but for method overriding inheritance is mandatory.

Can we override main method?

NO, because main is static method, static method will not be inherited to sub class and for method overriding inheritance is mandatory.

Can we Override Static members?

NO, because static methods will not be inherited to sub class but for method overriding inheritance is mandatory.

Q. What is constructor chaining in Java?

Constructor chaining is a phenomenon of calling one constructor from another constructor of same class. Since constructor can only be called from another constructor in Java, constructor chaining is used for this purpose.

Last updated