Skip to main content

Constructors in Java

A constructor in Java is a special method that is used to initialize objects.

It is called when an instance of a class is created.

The main purpose of a constructor is to set initial values for the object's attributes.

Key Characteristics of Constructors

  • Same Name as the Class: A constructor must have the same name as the class it belongs to.

  • No Return Type: A constructor does not have a return type, not even void.

  • Called Automatically: A constructor is called automatically when an object is created.

Types of Constructors

There are two main types of constructors in Java:

  1. Default Constructor

  2. Parameterized Constructor

Default Constructor

  • A default constructor is a constructor that takes no arguments.

  • If no constructor is explicitly defined in a class, the Java compiler automatically provides a default constructor.

Example of Default Constructor

 class Car {
// Instance variables
String color;
String model;
int year;

// Default constructor
public Car() {
this.color = "Unknown";
this.model = "Unknown";
this.year = 0;
}

// Method to display details
public void displayDetails() {
System.out.println("Car Model: " + model);
System.out.println("Car Color: " + color);
System.out.println("Car Year: " + year);
}
}

public class Main {
public static void main(String[] args) {
// Creating an object using the default constructor
Car myCar = new Car();
myCar.displayDetails();
}
}

Explanation:

  • Default Constructor: public Car() is the default constructor that initializes the attributes with default values.

  • Creating an Object: Car myCar = new Car(); creates an object using the default constructor.

The output will be:

Car Model: Unknown
Car Color: Unknown
Car Year: 0

Parameterized Constructor

  • A parameterized constructor is a constructor that takes one or more arguments.

  • It allows you to provide different values for the attributes when creating an object.

Example of Parameterized Constructor

 class Car {
// Instance variables
String color;
String model;
int year;

// Parameterized constructor
public Car(String color, String model, int year) {
this.color = color;
this.model = model;
this.year = year;
}

// Method to display details
public void displayDetails() {
System.out.println("Car Model: " + model);
System.out.println("Car Color: " + color);
System.out.println("Car Year: " + year);
}
}

public class Main {
public static void main(String[] args) {
// Creating an object using the parameterized constructor
Car myCar = new Car("Red", "Toyota", 2020);
myCar.displayDetails();
}
}

Explanation:

  • Parameterized Constructor: public Car(String color, String model, int year) is the parameterized constructor that initializes the attributes with provided values.

  • Creating an Object: Car myCar = new Car("Red", "Toyota", 2020); creates an object using the parameterized constructor.

The output will be:

Car Model: Toyota
Car Color: Red
Car Year: 2020

Constructor Overloading

  • Constructor overloading is a technique in Java where a class can have more than one constructor with different parameter lists.

  • This allows you to create objects in different ways.

Example of Constructor Overloading

 class Car {
// Instance variables
String color;
String model;
int year;

// Default constructor
public Car() {
this.color = "Unknown";
this.model = "Unknown";
this.year = 0;
}

// Parameterized constructor
public Car(String color, String model, int year) {
this.color = color;
this.model = model;
this.year = year;
}

// Method to display details
public void displayDetails() {
System.out.println("Car Model: " + model);
System.out.println("Car Color: " + color);
System.out.println("Car Year: " + year);
}
}

public class Main {
public static void main(String[] args) {
// Creating an object using the default constructor
Car car1 = new Car();
car1.displayDetails();

// Creating an object using the parameterized constructor
Car car2 = new Car("Blue", "Honda", 2018);
car2.displayDetails();
}
}

Explanation:

  • Default Constructor: Initializes attributes with default values.

  • Parameterized Constructor: Initializes attributes with provided values.

  • Creating Objects: car1 uses the default constructor, while car2 uses the parameterized constructor.

The output will be:

Car Model: Unknown
Car Color: Unknown
Car Year: 0
Car Model: Honda
Car Color: Blue
Car Year: 2018

this Keyword

  • The this keyword in Java is a reference to the current object.

  • It is used to distinguish between instance variables and parameters with the same name.

Example Using this Keyword

 class Car {
// Instance variables
String color;
String model;
int year;

// Parameterized constructor using 'this' keyword
public Car(String color, String model, int year) {
this.color = color;
this.model = model;
this.year = year;
}

// Method to display details
public void displayDetails() {
System.out.println("Car Model: " + model);
System.out.println("Car Color: " + color);
System.out.println("Car Year: " + year);
}
}

public class Main {
public static void main(String[] args) {
// Creating an object using the parameterized constructor
Car myCar = new Car("Green", "Ford", 2022);
myCar.displayDetails();
}
}

Explanation:

  • Using this Keyword: this.color = color; assigns the parameter color to the instance variable color.

The output will be:

Car Model: Ford
Car Color: Green
Car Year: 2022

Summary

  • Constructor: A special method used to initialize objects. It has the same name as the class and no return type.

  • Default Constructor: Takes no arguments and provides default values for attributes.

  • Parameterized Constructor: Takes arguments to provide specific values for attributes.

  • Constructor Overloading: Allows multiple constructors with different parameter lists in a class.

  • this Keyword: Refers to the current object and is used to distinguish between instance variables and parameters with the same name.

Understanding constructors is crucial for initializing objects effectively and setting up initial conditions in your Java programs.