Lecture Note-6 On Java
Lecture Note-6 On Java
Part-II
Polymorphism
Output:
SBI Rate of Interest: 8.4
ICICI Rate of Interest: 7.3
AXIS Rate of Interest: 9.7
Runtime Polymorphism with Data
Member
Method is overridden not the data members, so runtime
polymorphism can't be achieved by data members.
class Bike
{
int speedlimit=90;
}
class Honda3 extends Bike
{
int speedlimit=150;
public static void main(String args[])
{
Bike obj=new Honda3();
System.out.println(obj.speedlimit);//90
}
}
Output:
90
In the given example, both the classes have a data
member speedlimit, we are accessing the data member by
the reference variable of Parent class which refers to the
subclass object. Since we are accessing the data member
which is not overridden, hence it will access the data
member of Parent class always.
Runtime Polymorphism with Multilevel
Inheritance
class Animal
{
void eat()
{
System.out.println("eating");
}
}
class Dog extends Animal
{
void eat()
{
System.out.println("eating fruits");
}
}
class BabyDog extends Dog
{
void eat()
{
System.out.println("drinking milk");
}
public static void main(String args[])
{
Animal a1,a2,a3;
a1=new Animal();
a2=new Dog();
a3=new BabyDog();
a1.eat();
a2.eat();
a3.eat();
}
}
Output:
eating
eating fruits
drinking Milk
Example:
class Animal
{
void eat(){System.out.println("animal is eating...");}
}
class Dog extends Animal
{
void eat(){System.out.println("dog is eating...");}
}
class BabyDog1 extends Dog
{
public static void main(String args[]){
Animal a=new BabyDog1();
a.eat();
}
}
Output:
Dog is eating
Parent Class:
The class whose properties and functionalities are
used(inherited) by another class is known as parent class,
super class or Base class.
So, the Inheritance is a process of defining a new class
based on an existing class by extending its common data
members and methods.
*/
System.out.println(obj.getCollegeName());
System.out.println(obj.getDesignation());
System.out.println(obj.mainSubject);
obj.does();
}
The Output is:
AMU
Teacher
Computer
Teaching
Single Inheritance
• Multilevel Inheritance:
It refers to a child and parent class relationship where a
class extends the child class. For example class C
extends class B and class B extends class A.
C Multilevel Inheritance
class Car
{
public Car()
{
System.out.println("Class Car");
}
public void vehicleType()
{
System.out.println("Vehicle Type: Car");
}
}
class Maruti extends Car
{
public Maruti()
{
System.out.println("Class Maruti");
}
public void brand()
{
System.out.println("Brand: Maruti");
}
public void speed()
{
System.out.println("Max: 90Kmph");
}
}
public class Maruti800 extends Maruti
{
public Maruti800()
{
System.out.println("Maruti Model: 800");
}
public void speed()
{
System.out.println("Max: 80Kmph");
}
public static void main(String args[])
{ Maruti800 obj=new Maruti800();
obj.vehicleType(); obj.brand(); obj.speed();
}
}
Output:
Class Car
Class Maruti
Maruti Model: 800
Vehicle Type: Car
Brand: Maruti
Max: 80Kmph
• Hierarchical Inheritance:
It refers to a child and parent class relationship where
more than one classes extends the same class. For
example, classes B, C & D extends the same class A.
B C D
Hierarchical Inheritance
class A
{
public void methodA()
{
System.out.println("method of Class A");
}
}
class B extends A
{
public void methodB()
{
System.out.println("method of Class B");
}
}
class C extends A
{
public void methodC()
{
System.out.println("method of Class C");
}
}
class D extends A
{
public void methodD()
{
System.out.println("method of Class D");
}
}
class JavaExample
{
public static void main(String args[])
{
B obj1 = new B();
C obj2 = new C();
D obj3 = new D();
//All classes can access the method of class A
obj1.methodA();
obj2.methodA();
obj3.methodA();
}
}
Output:
method of Class A
method of Class A
method of Class A
• Multiple Inheritance:
It refers to the concept of one class extending more than
one classes, which means a child class has two parent
classes. For example class C extends both classes A and
B. Java doesn’t support multiple inheritance.
A B
C Multiple Inheritance
• Hybrid Inheritance:
Combination of more than one types of inheritance in a
single program.
For example class A & B extends class C and another
class D extends class A then this is a hybrid inheritance
example because it is a combination of single and
hierarchical inheritance. A
B C
Hybrid Inheritance D
class C
{
public void disp()
{
System.out.println("C");
}
}
class A extends C
{
public void disp()
{
System.out.println("A");
}
}
class B extends C
{
public void disp()
{
System.out.println("B");
}
}
class D extends A
{
public void disp()
{
System.out.println("D");
}
public static void main(String args[])
{
D obj = new D();
obj.disp();
}
}
Output:
D
What all can be done in a Subclass
In sub-classes we can inherit members as is, replace them,
hide them, or supplement them with new members:
The inherited fields can be used directly, just like any
other fields.
We can declare new fields in the subclass that are not in
the super class.
The inherited methods can be used directly as they are.
We can write a new instance method in the subclass
that has the same signature as the one in the super
class, thus overriding it.
Output:
parameterized constructor of parent class
Constructor of child class
Hello
There are few important points to note in this example:
1) super() or parameterized super must be the first
statement in constructor otherwise you will get the
compilation error: “Constructor call must be the first
statement in a constructor”
2) When we explicitly placed super in the constructor, the
java compiler didn’t call the default no-arg constructor
of parent class.
3. How to use super keyword in case of method
overriding
Output:
Child class method
Parent class method