Constructor is a block of code that initializes the newly created object. A constructor resembles an instance method in java but it’s not a method as it doesn’t have a return type. In short constructor and method are different(More on this at the end of this guide). People often refer constructor as special type of method in Java.
Constructor has same name as the class and looks like this in a java code.
publlic class MyClass
{ //This the constructor
MyClass()
{ }
}
Note:- that the constructor name matches with the class name and it doesn’t have a return type.
How does a constructor work
To understand the working of constructor, lets take an example. lets say we have a class
When we create the object of
MyClass
.When we create the object of
MyClass
like this:
MyClass obj = new MyClass();
The new keyword here creates the object of class
MyClass
and invokes the constructor to initialize this newly created object.
You may get a little lost here as I have not shown you any initialization example, lets have a look at the code below:
A simple constructor program in java
Here we have created an object
obj
of class Hello
and then we displayed the instance variable name
of the object. As you can see that the output is studywithbs.blogspot.com which is what we have passed to the name
during initialization in constructor. This shows that when we created the object obj
the constructor got invoked. In this example we have used this keyword, which refers to the current object, object obj
in this example. We will cover this keyword in detail in the next tutorial.public class Hello { String name; //Constructor Hello(){ this.name = "studywithbs.blogspot.com"; } public static void main(String[] args) { Hello obj = new Hello(); System.out.println(obj.name); } }
Output:- studywithbs.blogspot.com
Types of Constructors
There are three types of constructors: Default, Copy constructor and Parameterized.
Default constructor
If you do not implement any constructor in your class, Java compiler inserts a default constructor into your code on your behalf. This constructor is known as default constructor. You would not find it in your source code(the java file) as it would be inserted into the code during compilation and exists in .class file. This process is shown in the diagram below:
If you implement any constructor then you no longer receive a default constructor from Java compiler.
no-arg constructor:
Constructor with no arguments is known as no-arg constructor. The signature is same as default constructor, however body can have any code unlike default constructor where the body of the constructor is empty.
Although you may see some people claim that that default and no-arg constructor is same but in fact they are not, even if you write public Demo() { } in your classDemo
it cannot be called default constructor since you have written the code of it.
class Demo { public Demo() { System.out.println("This is a no argument constructor"); } public static void main(String args[]) { new Demo(); } }
Output:
This is a no argument constructorParameterized constructor
Constructor with arguments(or you can say parameters) is known as Parameterized constructor.
Example: parameterized constructor
In this example we have a parameterized constructor with two parameters
id
and name
. While creating the objects obj1
and obj2
I have passed two arguments so that this constructor gets invoked after creation of obj1 and obj2.public class Employee { int empId; String empName; //parameterized constructor with two parameters Employee(int id, String name){ this.empId = id; this.empName = name; } void info(){ System.out.println("Id: "+empId+" Name: "+empName); } public static void main(String args[]){ Employee obj1 = new Employee(10245,"Rampal"); Employee obj2 = new Employee(92232,"Ramesh"); obj1.info(); obj2.info(); } }
Output:
Id: 10245 Name: RampalId: 92232 Name: Ramesh
1 Comments
If you want to learn java programming . I prefer you this blog. It's a cool for learning.
ReplyDeletePost a Comment