Java Constructors

What is constructor?

  • Constructor is similar like a method, constructor name should be same as class name.
  • Constructor is used to perform the automatic initialization for class instance members.
  • Constructor initializes object upon object creation.
  • Once constructor is defined, constructor is automatically called immediately after the object is created but before the new operator completes.
  • Constructor does not have return type and not even void, implicit return type of a constructor is a class type itself.

What are the different types of constructors in java?

There are two types of constructors:
  • Default constructor (no argument constructor)
  • Parameterized constructors

Default constructor - No argument constructor

class Student {                                                                 
 String name;                                                                   
 int mark1, mark2, mark3;                                                       
                                                                                
 //Constructor                                                                  
 Student() {                                                                    
  System.out.println("Initializing student objects");                           
  name = "test1";                                                               
  mark1 = 75;                                                                   
  mark2 = 80;                                                                   
  mark3 = 65;                                                                   
 }                                                                              
                                                                                
 int getTotalMarks() {                                                          
  return (mark1 + mark2 + mark3);                                               
 }                                                                              
}                                                                               
class JavaConstructor {                                                         
 public static void main(String args[]) {                                       
  Student student1 = new Student();                                             
  Student student2 = new Student();                                             
                                                                                
  System.out.println("Student1: " + student1.getTotalMarks());                  
  System.out.println("Student2: " + student2.getTotalMarks());                  
 }                                                                              
}    
Output:
$ java JavaConstructor
Initializing student objects
Initializing student objects
Student1: 220
Student2: 220

Parameterized Constructors

class Student {                                                                 
 String name;                                                                   
 int mark1, mark2, mark3;                                                       
                                                                                
 //Constructor                                                                  
 Student(String n, int m1, int m2, int m3) {                                    
  System.out.println("Initializing student objects");                           
  name = n;                                                                     
  mark1 = m1;                                                                   
  mark2 = m2;                                                                   
  mark3 = m3;                                                                   
 }                                                                              
                                                                                
 int getTotalMarks() {                                                          
  return (mark1 + mark2 + mark3);                                               
 }                                                                              
}                                                                               
class JavaConstructor1 {                                                        
 public static void main(String args[]) {                                       
  Student student1 = new Student("test1", 75, 45, 89);                          
  Student student2 = new Student("test2", 87, 78, 98);                          
                                                                                
  System.out.println(student1.name + ": " + student1.getTotalMarks());          
  System.out.println(student2.name +": "  + student2.getTotalMarks());          
 }                                                                              
}   
Output:
$ java JavaConstructor1
Initializing student objects
Initializing student objects
test1: 209
test2: 263

What is the use of this keyword?

this keyword is used to refer the current instance or object. this is always a reference to the object on which method is invoked.
 //Constructor                                                                  
 Student(String name, int mark1, int mark2, int mark3) {                        
  System.out.println("Initializing student objects");                           
  this.name = name;                                                             
  this.mark1 = mark1;                                                           
  this.mark2 = mark2;                                                           
  this.mark3 = mark3;                                                           
 }                                                                              

What is instance variable hiding?

  • It is not legal in java declaring two local variables in same name in the same or enclosing scopes.
  • If instance variable and local variable have same name, then local variable hides the instance variable.
class Student {                                                                 
 String name;                                                                   
 int mark1, mark2, mark3;                                                       
                                                                                
 //Constructor                                                                  
 Student(String name, int mark1, int mark2, int mark3) {                        
  System.out.println("Initializing student objects");                           
  name = name;                                                                  
  mark1 = mark1;                                                                
  mark2 = mark2;                                                                
  mark3 = mark3;                                                                
 }                                                                              
                                                                                
 int getTotalMarks() {                                                          
  return (mark1 + mark2 + mark3);                                               
 }                                                                              
}                                                                               
                                                                                
class JavaConstructor2 {                                                        
 public static void main(String args[]) {                                       
  Student student1 = new Student("test1", 75, 45, 89);                          
  Student student2 = new Student("test2", 87, 78, 98);                          
                                                                                
  System.out.println(student1.name + ": " + student1.getTotalMarks());          
  System.out.println(student2.name +": "  + student2.getTotalMarks());          
 }                                                                              
}  
Output:
$ java JavaConstructor2
Initializing student objects
Initializing student objects
null: 0
null: 0

Accessing instance variable using this keyword

this keyword is used to access instance variable and differentiates with local variable in same scopes.
class Student {                                                                 
 String name;                                                                   
 int mark1, mark2, mark3;                                                       
                                                                                
 //Constructor                                                                  
 Student(String name, int mark1, int mark2, int mark3) {                        
  System.out.println("Initializing student objects");                           
  this.name = name;                                                             
  this.mark1 = mark1;                                                           
  this.mark2 = mark2;                                                           
  this.mark3 = mark3;                                                           
 }                                                                              
                                                                                
 int getTotalMarks() {                                                          
  return (this.mark1 + this.mark2 + this.mark3);                                
 }                                                                              
}                                                                               
                                                                                
class JavaConstructor2 {                                                        
 public static void main(String args[]) {                                       
  Student student1 = new Student("test1", 75, 45, 89);                          
  Student student2 = new Student("test2", 87, 78, 98);                          
                                                                                
  System.out.println(student1.name + ": " + student1.getTotalMarks());          
  System.out.println(student2.name +": "  + student2.getTotalMarks());          
 }                                                                              
}     
Output:
$ java JavaConstructor2
Initializing student objects
Initializing student objects
test1: 209
test2: 263

Overloading Constructors

Overloaded constructor is called based upon the parameters specified when new is created for object creation.
class Student {                                                                 
 String name;                                                                   
 int mark1, mark2, mark3;                                                       
                                                                                
 //Constructor                                                                  
 Student() {                                                                    
  System.out.println("Initializing student objects");                           
  name = "test1";                                                               
  mark1 = 75;                                                                   
  mark2 = 80;                                                                   
  mark3 = 65;                                                                   
 }                                                                              
                                                                                
 Student(String name, int mark1, int mark2, int mark3) {                        
  System.out.println("Initializing student objects");                           
  this.name = name;                                                             
  this.mark1 = mark1;                                                           
  this.mark2 = mark2;                                                           
  this.mark3 = mark3;                                                           
 }                                                                              
                                                                                
 int getTotalMarks() {                                                          
  return (this.mark1 + this.mark2 + this.mark3);                                
 }                                                                              
}                                                                               
                                                                                
class JavaConstructor2 {                                                        
 public static void main(String args[]) {                                       
  Student student1 = new Student();                                             
  Student student2 = new Student("test2", 87, 78, 98);                          
                                                                                
  System.out.println(student1.name + ": " + student1.getTotalMarks());          
  System.out.println(student2.name +": "  + student2.getTotalMarks());          
 }                                                                              
}     
Output:
$ java JavaConstructor2
Initializing student objects
Initializing student objects
test1: 220
test2: 263

Java Examples

GCD and Rational Number Java Program

Java Queue Program using exception

Java Stack Program using exception

Addition of three integers java program

Biggest of three integers java program

Fibonacci numbers java program

Arithmetic Operations Menu java program

Second Smallest Element In Array Java Program

Transpose Of A Matrix Java Program

Java Program to Display triangle of stars (*)

Java Programming Prints Product Tables

Java Program to Display triangle of numbers

Java Program to Get Current Date

Java Program to Find Character Vowel or Consonent

Java Program to Compute HCF and LCM

Java Program to Sum the Command Line Integer Arguments

Java Programm to Multiply the Command Line Integer Arguments

Java Program to Find Multiplication of Command Line Floating Point Numeric Arguments

Java Program to Check String Contains or Not

Java Program to Get Grade Description using Switch

Java Program for CSV File Reader

Java Program to Find Character Frequency Count in String using for each

Java Program to Find Min from Integer Array by Passing Array to Method

Java Program Linear Search

Binary Search Java Program

Ternary Search Java Program

Java Program to Generate Range of Numbers

Java Program to Generate Range of Characters

Java Program to Compute Square Root Value

Java Program to Check Number is Positive or Negative

Java Program to Check Number is Odd or Even

Java Program to Compute Plot Area

Java Program to Convert Number of Days into Years

Java Program to Check a Year is Leap Year, Century Year or Not

Java Program to Check a Character is Digit, Letter or neither digit nor letter

Java Program to Check a Number is Palindrome or not

Java Program to Sum Two Matrix

Java Program to Compute Power

Java Program to Check Number is an Armstrong Number or not

Java Program for Temperature Unit Conversions

Java Program to Generate Random Numbers in Specified Range

Java Program to Compute Sum of Digits and Product of Digits

Java Program to Compute Reverse Number

Java Programming Computes Factorial Value

Java Programming Checks Prime Number or not

Java Program to Compute Harmonic Series

Java Program Generate Floyd's Triangle

Java Program to Reverse String

Java Program to Check Palindrome String or not

Java Program to Open Notepad

Java Program to Search String using RegEx Pattern

Java Program to Search Word in String

Java Program to Get System Environment Variables

Java Program to Get IP Address of Server Name

Java Program for Arrays Sorting and Reverse using sort method

Java Program for Bubble Sorting

Java Program for Selection Sorting

Java Program for Insertion Sorting

Java Program for Merge Sorting

Java Program for Quick Sorting

Java Program for Counting Sort

Java Program for Radix Sorting

Java Program for Sorting Array of Strings

Java Program for String Characters Sorting

Java Program to Sum First N Numbers

Java Program to Product First N Numbers

Java Program to get URL details

Java Program to get URL HTML Content

Java Program to get URL details

Java Program to get URL HTML Content

Privacy Policy  |  Copyrightcopyright symbol2020 - All Rights Reserved.  |  Contact us   |  Report website issues in Github   |  Facebook page   |  Google+ page

Email Facebook Google LinkedIn Twitter
^