Constructor in java

pavithbuddhima 19,245 views 12 slides Oct 27, 2016
Slide 1
Slide 1 of 12
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12

About This Presentation

$ explain what is the constructor in java
$ what are the types of constructor in java
$ how to use constructor
$ examples


Slide Content

CONSTRUCTOR S.G.V.P.Gunasekara - 2015238 1 s.g.v.p.b.gunasekara - 2015238 - w1608462

Constructor Constructor in java is a special type of method that is used to initialize the object. Java constructor is invoked at the time of object creation. It constructs the values i.e. provides data for the object that is why it is known as constructor. 2 s.g.v.p.b.gunasekara - 2015238 - w1608462

Rules for creating java constructor There are basically two rules defined for the constructor. 1. Constructor name must be same as its class name 2. Constructor must have no explicit return type 3 s.g.v.p.b.gunasekara - 2015238 - w1608462

Types of java constructors There are two types of constructors: 1. Default constructor (no- arg constructor) 2. Parameterized constructor 4 s.g.v.p.b.gunasekara - 2015238 - w1608462

Default constructor A constructor that have no parameter is known as default constructor. Syntax of default constructor: < class_name >(){}    Example of default constructor In this example, we are creating the no- arg constructor in the Bike class . It will be invoked at the time of object creation. class Bike1{   Bike1 (){ System.out.println (& quot;Bike  is  created&quot ;) ;}    public static void main(String  args []){   Bike1 b=new Bike1();   }   } 5 s.g.v.p.b.gunasekara - 2015238 - w1608462

Parameterized constructor A constructor that have parameters is known as parameterized constructor. Why use parameterized constructor? Parameterized constructor is used to provide different values to the distinct objects. 6 s.g.v.p.b.gunasekara - 2015238 - w1608462

Example of parameterized constructor In this example, we have created the constructor of Student class that have two parameters . We can have any number of parameters in the constructor. class Student4{        int  id;        String name;               Student4( int   i,String  n){        id =  i ;         name = n;        }         void display(){ System.out.println (id+& quot ; & quot ;+name);}            public static void main(String  args []){        Student4 s1 = new Student4(111,&quot;Karan&quot;);       Student4 s2 = new Student4(222,&quot;Aryan&quot;);        s1.display();       s2.display();       }   } 7 s.g.v.p.b.gunasekara - 2015238 - w1608462

Output: 111 Karan 222 Aryan 8 s.g.v.p.b.gunasekara - 2015238 - w1608462

Constructor overloading Like other methods in java constructor can be overloaded i.e. we can create as many constructors in our class as desired. Number of constructors depends on the information about attributes of an object we have while creating objects. s.g.v.p.b.gunasekara - 2015238 - w1608462 9

example: constructor overloading example: class Language { String name; Language() { System.out.println ("Constructor method called."); } Language(String t) { name = t; } public static void main(String[] args ) { Language cpp = new Language(); Language java = new Language("Java"); cpp.setName ("C++"); java.getName (); cpp.getName (); } void setName (String t) { name = t; } void getName () { System.out.println ("Language name: " + name); } } s.g.v.p.b.gunasekara - 2015238 - w1608462 10

Output: Constructor method called . Language name : java Language name:c ++ s.g.v.p.b.gunasekara - 2015238 - w1608462 11

s.g.v.p.b.gunasekara - 2015238 - w1608462 12