15) Constructors

Real Life Example:

What happens when you open a new bank account? Depending on the services your bank provides, you may be assigned a new bank account number, provided with a check- book, and given access to a new online account the bank has created for you. These details are created and returned to you as part of setting up your new bank account.

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.

Differences:

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()

** Default Constructor falls under No-Arguments Constructor.

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.

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple1 {
	Simple1() {
		System.out.println("Running Constructor");
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple1 s1 = new Simple1();
		System.out.println("Main Ends");
	}
}

Output:

Main Starts

Running Constructor

Main Ends

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple22 {
	Simple22() {
		System.out.println("Running Demo1 constructor");
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple22 s2 = new Simple22();
		System.out.println("------------");
		Simple22 s22 = new Simple22();
		System.out.println("Main Ends");
	}
}

Output:

Main Starts

Running Demo1 constructor

------------

Running Demo1 constructor

Main Ends

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple3 {
	/*
	 * DefaultConstructor Simple3() { }
	 */
	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple3 s3 = new Simple3(); // Call to default constructor System.out.println("Main Ends");
	}
}

Output:

Main Starts

Main Ends

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple4 {
	void Simple4() {
		System.out.println("Constructor ?");// Method with class name.
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple4 s4 = new Simple4();
		System.out.println("Main Ends");
		System.out.println("-----------");
	}
}

Output:

Main Starts

Main Ends

-----------

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple55 {
	int stdId;

	Simple55() {
		System.out.println("Running Constructor");
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple55 s5 = new Simple55();
		System.out.println("Value of stdId is :" + s5.stdId);
		System.out.println("--------------------");
		Simple55 s55 = new Simple55();
		System.out.println("Value of stdId is :" + s55.stdId);
		System.out.println("Main Ends");
	}
}

Output:

Main Starts

Running Constructor

Value of stdId is :0

--------------------

Running Constructor

Value of stdId is :0

Main Ends

Example: Parametrized Constructor

package com.gs.ilp.corejava.Constructor;

public class Simple66 {
	int empId;

	Simple66(int id) {
		empId = id;
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple66 s6 = new Simple66(10);
		System.out.println("Employee id is:" + s6.empId);
		Simple66 s66 = new Simple66(20);
		System.out.println("Employee id is:" + s66.empId);
		System.out.println("Main Ends");
	}
}

Output:

Main Starts

Employee id is:10

Employee id is:20

Main Ends

Example:

package com.gs.ilp.corejava.Constructor;

public class Simple7 {
	int stdId;
	String stdName;

	Simple7(int id, String name) {
		stdId = id;
		stdName = name;
	}

	public static void main(String[] args) {
		System.out.println("Main Starts");
		Simple7 s7 = new Simple7(1, "JSM");
		System.out.println("1st student id is:" + s7.stdId);
		System.out.println("1st student name is:" + s7.stdName);
		System.out.println("-------------------------");
		Simple7 s77 = new Simple7(1, "SMP");
		System.out.println("1st student id is:" + s77.stdId);
		System.out.println("1st student name is:" + s77.stdName);
		System.out.println("Main Ends");
	}
}

Output:

Main Starts

1st student id is:1

1st student name is:JSM

-------------------------

1st student id is:1

1st student name is:SMP

Main Ends

Example:

package com.gs.ilp.corejava.Constructor;

public class Circle {
	double radius;

	Circle(double r) {
		radius = r;
		double a = 3.14 * radius * radius;
		System.out.println("Area is:" + a);
	}

	public static void main(String[] args) {
		Circle c1 = new Circle(2.3);
		Circle c2 = new Circle(5.2);
	}
}

Output:

Area is:16.610599999999998

Area is:84.90560000000002

Example:

package com.gs.ilp.corejava.Constructor;

public class A {
	A() {
		System.out.println("From A()");
	}

	A(int a) {
		System.out.println("From A(int a)");
	}

	A(double d) {
		System.out.println("From A(double d)");
	}

	A(int i, double d) {
		System.out.println("From A(inti,double d)");
	}

	public static void main(String[] args) {
		A a1 = new A();
		A a11 = new A(50);
		A a111 = new A(50.1);
		A a1111 = new A(50, 50.8);
		A a11111 = new A(50, 60.9);
	}
}

Output:

From A()

From A(int a)

From A(double d)

From A(inti,double d)

From A(inti,double d)

Example:

package com.gs.ilp.corejava.Constructor;

public class Student {
	String stdName;
	int stdId;
	int age;

	Student(String name, int id, int a) {
		stdName = name;
		stdId = id;
		age = a;
	}

	Student(String name, int id) {
		stdName = name;
		stdId = id;
	}

	public static void main(String[] args) {
		Student s1 = new Student("JSM", 10, 90);
		System.out.println("1st student id is:" + s1.stdId);
		System.out.println("1st student Name is:" + s1.stdName);
		System.out.println("1st student age is:" + s1.age);
		Student s2 = new Student("SMP", 20);
		System.out.println("1st student id is:" + s2.stdId);
		System.out.println("1st student Name is:" + s2.stdName);
	}
}

Output:

1st student id is:10

1st student Name is:JSM

1st student age is:90

1st student id is:20

1st student Name is:SMP

What if you implement only parameterized constructor in class

package com.gs.ilp.corejava.Constructor;

public class Example3 {
	private int var;

	public Example3(int num) {
		var = num;
	}

	public int getValue() {
		return var;
	}

	public static void main(String args[]) {
		Example3 myobj = new Example3();
		System.out.println("value of var is: " + myobj.getValue());
	}
}

Output: It will throw a compilation error. The reason is, the statement Example3 myobj = new Example3() is invoking a default constructor which we don’t have in our program. When you don’t implement any constructor in your class, compiler inserts the default constructor into your code, however when you implement any constructor (in above example I have implemented parameterized constructor with int parameter), then you don’t receive the default constructor by compiler into your code.

If we remove the parameterized constructor from the above code then the program would run fine, because then compiler would insert the default constructor into your code.

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.

package com.gs.ilp.corejava.Constructor;

public class Test {
	Test() {
		this(10);
	}

	Test(int x) {
		System.out.println("x=" + x);
	}
}

What happens if you define a return type for a constructor?

Java will treat it as another method, not a constructor, which also implies that it won’t be called implicitly when you create an object of its class:

How do you execute such a method?

By calling it explicitly, as in the following code (modified code is in bold):

What happens if you don’t define any constructor in a class?

Behind the scenes:

What happens if you add another constructor to the class Employee, as in the following example?

Java defines a default constructor if and only if you don’t define a constructor. If a class doesn’t define a constructor, the compiler will add a default, no-argument constructor to the class. But if you modify the class later by adding a constructor to it, the Java compiler will remove the default, no- argument constructor that it initially added to the class.

Last updated