×

Constructor in Java with Example

Java Constructor  The constructor is used for object initialization. It's a block of code that initializes a newly created object. It contains a collection of statements that are executed at the time of object creation. The constructor is not mandatory for a programmer to write it for a class, but for the ease of program and security purpose, we make constructors. If the user does not define any constructor for a class, compiler initializes member variables to its default values.

Rules for creating a Java constructor

Some rules for creating a Java constructor are as follows
  • A constructor name should be same as the class name.
  • A constructor should not return a value (not even void).
  • A constructor should not be abstract, final, static, and synchronize.
  • A constructor can use the access modifier in constructor declaration to control its access.
Example
publicclassDemo{
//This is the constructor
Demo()
{
   }
   ..
}
After a Constructor is created, now a question arises that how it works? The answer is when an object is created using new keyword; then a constructor is invoked for initializing the newly created object.
Demo obj= new Demo()
Here the new keyword creates the object of the class Demo and invokes the constructor to initialize the object of Demo class. Example
publicclass Hello {
   String name;
//Constructor
Hello(){
this.name = "Java Constructor.";
   }
publicstaticvoid main(String[] args) {
      Hello obj = newHello();
System.out.println(obj.name);
   }
}
Output
Java Constructor.

Types of constructors

There are three types of constructors.
  • Default constructor
  • Parameterized constructor
  • No-argument constructor
Default constructor Java uses a constructor by default to initialize the object of the class. If you do not write any constructor in Java program, Java compiler inserts a Default constructor in your Java program. Default constructor provides the default values to the objects depending on their type. See the below figure for understanding how a default constructor act. As you can see in the given figure, there is a user made .java file,Java compiler compiles the code and converts it into .class file and creates a constructor for the given class.

Parameterized constructor

A constructor that can have arguments or parameters is known as parameterized constructor. These parameters are used to initialize attributes. Example1
publicclassExDemo{
intx;
publicExDemo(inty) {
x = y;
  }   
publicstaticvoid main(String[] args) {
ExDemoObj = newExDemo(5);
System.out.println(Obj.x);
  }}
Output
5
You can pass more than one parameters in a constructor. Example2
 publicclass Employee {
intempId; 
   String empName; 
//parameterized constructor with two parameters
Employee(intid, String name){ 
this.empId = id; 
this.empName = name; 
   } 
void detail(){
System.out.println("Name: "+empName+" id: "+empId);
   } 
     publicstaticvoid main(String args[]){ 
     Employee e1 = newEmployee(12527,"Vijay"); 
     Employee e2 = newEmployee(12528,"Vikram"); 
     e1.detail(); 
     e2.detail(); 
   } 
}
Output
Name: Vijay id: 12527
Name: Vikram id: 12528
No-argument constructor A constructor that has no parameter or arguments is called as No-argument constructor. Signature of No-argument constructor is the same as default constructor; however, the body can have any code, unlike default constructor. If you write a constructor with arguments or no-arguments, then the compiler does not create a default constructor. Example
class ExDemo1
{
public ExDemo1()
     {
System.out.println("In No-arg constructor");
     }
publicstaticvoid main(String args[]) {
     new ExDemo1();
     }
}
Output
In No-arg constructor

Constructor overloading

Constructors allow overloading as methods do. Constructor overloading is a technique in Java that allows a class can have any number of the constructor, but each constructor should be different in the parameter list. Compiler differentiates constructors based on the number of parameters and their types. Let's have a look at the below example Example
class Student
    {
intRoll_no;
        String SName;
doubleMarks;
Student(intR,StringN,doubleM)        //Constructor 1
        {
Roll_no = R;
SName = N;
Marks = M;
        }
Student(String N,doubleM,intR)        //Constructor 2
        {
Roll_no = R;
SName = N;
Marks = M;
        }
void Display()
        {
System.out.print("\n\t" + Roll_no+"\t" + SName+"\t" + Marks);
        }
publicstaticvoid main(String[] args)
        {
            Student S1 = newStudent(1,"akash mishra",85.57);  // Statement 2
            Student S2 = newStudent(2,"vaibhav Saxena",87.65);  // Statement 1
System.out.print("\n\tRoll_no\tSName\tMarks\n");
S1.Display();
S2.Display();
        }
        }
Output
 Rollno SName   Marks
     1    akashmishra   85.57
     2    vaibhavSaxena 87.65
Constructor chaining Constructor chaining is a technique of calling one constructor from another constructor concerning current object. You can pass the parameters through a bunch of different constructors.You can maintain your initializations from a single location. Constructor chaining can be applied in two ways
  • Within same class
  • From base class
Constructor chaining within the same class can be done using the this() keyword of the constructor of the same class. Constructor chaining from the base class can be done using the super() keyword that calls the constructor from the base class.

Constructor chaining within the same class using this()

  • this() should always be the first statement of the constructor for constructor chaining.
  • Constructors can be in any order for constructor chaining; it is not necessary to put them in order.
  • At least one constructor should be without this() keyword.
class ExDemo2
{
ExDemo2()
     { 
          this(11);
          System.out.println(" Default constructor");
     } 
     ExDemo2(intx)
     {
          this(10, 12);
          System.out.println(x);
     }
     ExDemo2(intx, inty)
     {
          System.out.println(x * y);
     }
publicstaticvoid main(String args[])
     {
     new ExDemo2();
     }
}
Output
120
11
Default constructor

Constructor chaining from base class usingsuper()
class ExDemo3
{
     String name;
     ExDemo3()
     {
          this("");
          System.out.println("This is No-argument constructor");
     }
     ExDemo3(String name)
     {
          this.name = name;
          System.out.println("This is parameterized constructor");
     }
}

class Child extends ExDemo3
{
     // constructor 3
     Child()
     {
          System.out.println("This is No-argument constructor " +
                             "of child class");     } 
     Child(String name)
     {  
          super(name);
          System.out.println("This is  parameterized " +
                             "constructor of Child class");
     }
     publicstaticvoid main(String args[])
     {
          Child obj = newChild("ExDemo3"); 
     }
}
Output
This is parameterized constructor
This is parameterized constructor of Child class
super() should be the first line of the constructor as super class constructor are invoked before the subclass constructor.

Java copy constructor

By default, Java does not support any copy constructor, but we can copy the values from one object to other like a copy constructor. Below is an example of copying values from one object to another object using Java constructor. Example                
classEmpl{ 
intid; 
    String name; 
Empl(inti,Stringn){ 
id = i; 
name = n; 
    }  
Empl(Emple){ 
id = e.id; 
name =e.name; 
    } 
void display(){System.out.println(id+" "+name);} 
publicstaticvoid main(String args[]){ 
Emple1 = newEmpl(125,"Raghav"); 
Emple2 = newEmpl(e1); 
e1.display(); 
e2.display(); 
   } 
}
Output
125 Raghav
125 Raghav

Related Topics

Graphics Program in Java

Graphics Program in Java The graphics program in Java is part of the Swing program in Java. In this section, we will learn about the implementation of custom graphics using some...

6 minutes read.

Jagged Array in Java

Prerequisite We must first understand what Arrays are and Multi-dimensional Arrays are before we can learn about Jagged arrays. Java Arrays: A collection of data types that are similar is called an...

5 minutes read.

Volatile keyword in Java

Multiple threads can change a variable's value by using the volatile keyword. Making classes thread-safe is another application for it. It indicates that using a method or an instance of...

3 minutes read.

Java Characters

Normally, when we work with characters, we use primitive data types char. When we have to work with the objects of char, we use Character class. Character class has many important...

2 minutes read.

Bounded buffer problem in Java

The Bounded buffer Problem can also be called a Producer consumer problem. The problem covers two processes—the producer and the consumer—that share a single, fixed-size buffer that serves as a...

4 minutes read.

Iterate JSON array in Java

This article is going to equip the knowledge about what JSON array is and how it works and also how is it distinct with the generic array. Json Array Ordered lists of...

4 minutes read.

Construct the Largest Number from the Given Array in Java

In this section, we will create a Java programme that will enable you to locate the greatest integer in an array. The programme will begin comparing the array's numbers with...

3 minutes read.

The Maximum Rectangular Area in a Histogram in Java

Continuous bars should be used to form the largest possible rectangle. We'll assume in the interest of convenience that each bar's width is 1. Naive Approach In this method, each bar will be...

6 minutes read.

Perfect Number Program in Java

Perfect Number Program in Java A perfect number is a number whose sum of all the factors, excluding the number itself, is equal to the number. For example, 28 is a...

4 minutes read.

Java Create File

A File is a hypothetical way, which has no genuine presence. It is very much like while "using" that File that the major real activity of putting away something in...

5 minutes read.

Web Crawler in Java

In this article, you will be acknowledged with what a web crawler in java is and what are its functions. You will also be able to understand where to implement...

4 minutes read.

Java Byte Code

Java byte code is really a powerful mechanism which makes Java a portable and platform-independent programming language. There are two software components which go along and make this byte code...

3 minutes read.

How to Reverse a String in Java

How to Reverse a String in Java There are a lot of ways to reverse a string in Java. One can use iteration, StringBuilder, StringBuffer to do the reverse of a...

6 minutes read.

Functional Interface in Java 8

A brief introduction to Interface in Java: Interfaces in Java are basically the blue print of classes. Before the appearance of Java 8, it was only possible to declare one or...

11 minutes read.

Java Generics Questions

Introduction We'll walk through a few real-world examples of interview questions and responses for Java generics in this article. Java 5 saw the debut of the fundamental idea of generics. Due to...

9 minutes read.

Java Boolean parseBoolean() Method

The parseBoolean() method of Boolean class returns a Boolean value for the specified String argument. It returns true if and only if string’s value is equal to “true”, else it...

1 minute read.

Magnanimous Number in java

Magnanimous Number When the left and right halves of a majestic number are combined, the result is invariably a prime number, which must have at least two digits. The number's left...

3 minutes read.

Stack in Java

Java provides a number of collection frameworks to store the collection of objects. Among the collection of data structures " Stack " is one of them. Stack is one of...

5 minutes read.

Java Thread Priority in Multithreading

As we realise, java, being object-situated, works inside a multithreading climate in which the string scheduler relegates the processor to a string in light of the need for a string....

6 minutes read.

Java protected vs private

Java : Java is a pure object oriented language. It was introduced by James Gosling in the year 1995. The first public implementation of java was done by sun micro systems...

3 minutes read.