In Java, constructors play an important role in object creation. A constructor is a special block of code that is called when an object is created. Its main job is to initialize the object, to set up its internal state, or to assign default values to its attributes. This process happens automatically when we use the "new" keyword to create an object.
Characteristics of Constructors:
Now, let us look at a simple example to understand how a constructor works in Java.
Example: This program demonstrates how a constructor is automatically called when an object is created in Java.
Java
// Java Program to demonstrate
// Constructor usage
import java.io.*;
// Driver Class
class Geeks {
// Constructor
Geeks()
{
super();
System.out.println("Constructor Called");
}
// main function
public static void main(String[] args)
{
Geeks geek = new Geeks();
}
}
Constructor Called
Note: It is not necessary to write a constructor for a class. It is because the Java compiler creates a default constructor (constructor with no arguments) if your class doesn't have any.
Constructor vs Method in JavaThe below table demonstrates the key difference between Java Constructor and Java Methods.
Features
Constructor
Method
Name
Constructors must have the same name as the class name
Methods can have any valid name
Return Type
Constructors do not return any type
Methods have the return type or void if does not return any value.
Invocation
Constructors are called automatically with new keyword
Methods are called explicitly
Purpose
Constructors are used to initialize objects
Methods are used to perform operations
Now let us come up with the syntax for the constructor being invoked at the time of object or instance creation.
class Geek
{
......// A Constructor
Geek() {
}
.......}
// We can create an object of the above class
// using the below statement. This statement
// calls above constructor.Geek obj = new Geek();
The first line of a constructor is a call to super() or this(), (a call to a constructor of a super-class or an overloaded constructor), if you don't type in the call to super in your constructor the compiler will provide you with a non-argument call to super at the first line of your code, the super constructor must be called to create an object:
Note: If you think your class is not a subclass it actually is, every class in Java is the subclass of a class object even if you don't say extends object in your class definition.
Why Do We Need Constructors in JavaConstructors play a very important role, it ensures that an object is properly initialized before use.
What happens when we don't use constructors:
Without constructors:
When Java Constructor is Called?Think of a Box. If we talk about a box class then it will have some class variables (say length, breadth, and height). But when it comes to creating its object (i.e Box will now exist in the computer's memory), then can a box be there with no value defined for its dimensions? The answer is No.
So, constructors are used to assign values to the class variables at the time of object creation, either explicitly done by the programmer or by Java itself (default constructor).
Each time an object is created using a new() keyword, at least one constructor (it could be the default constructor) is invoked to assign initial values to the data members of the same class. Rules for writing constructors are as follows:
So, we have learned constructors are used to initialize the object's state. Like methods , a constructor also contains a collection of statements (i.e. instructions) that are executed at the time of object creation.
Types of Constructors in JavaNow is the correct time to discuss the types of the constructor, so primarily there are three types of constructors in Java are mentioned below:
A constructor that has no parameters is known as default constructor. A default constructor is invisible. And if we write a constructor with no arguments, the compiler does not create a default constructor. Once you define a constructor (with or without parameters), the compiler no longer provides the default constructor. Defining a parameterized constructor does not automatically create a no-argument constructor, we must explicitly define if needed. The default constructor can be implicit or explicit.
0
for numbers, null
for objects.Example: This program demonstrates the use of a default constructor, which is automatically called when an object is created.
Java
// Java Program to demonstrate
// Default Constructor
import java.io.*;
// Driver class
class Geeks{
// Default Constructor
Geeks() {
System.out.println("Default constructor");
}
// Driver function
public static void main(String[] args)
{
Geeks hello = new Geeks();
}
}
Default constructor
Note: Default constructor provides the default values to the object like 0, null, false etc. depending on the type.
2. Parameterized Constructor in JavaA constructor that has parameters is known as parameterized constructor. If we want to initialize fields of the class with our own values, then use a parameterized constructor.
Example: This program demonstrates the use of a parameterized constructor to initialize an object's attributes with specific values.
Java
// Java Program for Parameterized Constructor
import java.io.*;
class Geeks {
// data members of the class
String name;
int id;
Geeks(String name, int id) {
this.name = name;
this.id = id;
}
}
class GFG
{
public static void main(String[] args)
{
// This would invoke the parameterized constructor
Geeks geek1 = new Geeks("Sweta", 68);
System.out.println("GeekName: " + geek1.name
+ " and GeekId: " + geek1.id);
}
}
GeekName: Sweta and GeekId: 68
3. Copy Constructor in JavaRemember: Does constructor return any value?
There are no "return value" statements in the constructor, but the constructor returns the current class instance. We can write 'return' inside a constructor.
Unlike other constructors copy constructor is passed with another object which copies the data available from the passed object to the newly created object.
Note: Java does not provide a built-in copy constructor like C++. We can create our own by writing a constructor that takes an object of the same class as a parameter and copies its fields.
Example: This example, demonstrates how a copy constructor can be used to create a new object by copying the values of another object's attributes.
Java
// Java Program for Copy Constructor
import java.io.*;
class Geeks {
// data members of the class
String name;
int id;
// Parameterized Constructor
Geeks(String name, int id)
{
this.name = name;
this.id = id;
}
// Copy Constructor
Geeks(Geeks obj2)
{
this.name = obj2.name;
this.id = obj2.id;
}
}
class GFG {
public static void main(String[] args)
{
// This would invoke the parameterized constructor
System.out.println("First Object");
Geeks geek1 = new Geeks("Sweta", 68);
System.out.println("GeekName: " + geek1.name
+ " and GeekId: " + geek1.id);
System.out.println();
// This would invoke the copy constructor
Geeks geek2 = new Geeks(geek1);
System.out.println(
"Copy Constructor used Second Object");
System.out.println("GeekName: " + geek2.name
+ " and GeekId: " + geek2.id);
}
}
First Object GeekName: Sweta and GeekId: 68 Copy Constructor used Second Object GeekName: Sweta and GeekId: 68Constructor Overloading
This is a key concept in OOPs related to constructors is constructor overloading. This allows us to create multiple constructors in the same class with different parameter lists.
Example: This example, demonstrates constructor overloading, where multiple constructors perform the same task (initializing an object) with different types or numbers of arguments.
Java
// Java Program to illustrate constructor overloading
// using same task (addition operation ) for different
// types of arguments
import java.io.*;
class Geeks {
// constructor with one argument
Geeks(String name)
{
System.out.println("Constructor with one "
+ "argument - String: " + name);
}
// constructor with two arguments
Geeks(String name, int age)
{
System.out.println(
"Constructor with two arguments: "
+ " String and Integer: " + name + " " + age);
}
// Constructor with one argument but with different
// type than previous
Geeks(long id)
{
System.out.println(
"Constructor with one argument: "
+ "Long: " + id);
}
}
class GFG {
public static void main(String[] args)
{
// Creating the objects of the class named 'Geek'
// by passing different arguments
// Invoke the constructor with one argument of
// type 'String'.
Geeks geek2 = new Geeks("Sweta");
// Invoke the constructor with two arguments
Geeks geek3 = new Geeks("Amiya", 28);
// Invoke the constructor with one argument of
// type 'Long'.
Geeks geek4 = new Geeks(325614567);
}
}
Constructor with one argument - String: Sweta Constructor with two arguments: String and Integer: Amiya 28 Constructor with one argument: Long: 325614567
To know deep down about constructors refer to this article Constructor Chaining
Common Mistakes to AvoidSome common mistakes to avoid when working with constructors in Java are listed below:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4