Topics: Inheritance Inheritance Examples Java Support For Inheritance (Just Introduction) Types of Inheritance
Topics: Inheritance Inheritance Examples Java Support For Inheritance (Just Introduction) Types of Inheritance
• Inheritance
• Inheritance Examples
• Java Support for Inheritance [Just
Introduction]
• Types of Inheritance
1 Object-Oriented Programming
Inheritance : Reusability
https://en.wikipedia.org/wiki/Inheritance_(object-oriented_programming)
2 Object-Oriented Programming
Inheritance : Some Simple
Examples
4 Object-Oriented Programming
Types of Inheritance
5 Object-Oriented Programming
Types of Inheritance : Single Level
class A
{
A ….
}// End of class A
class B extends A
B
{
…..
}// End of class B
6 Object-Oriented Programming
Types of Inheritance : Hierarchical
class C extends X
{
…..
}// End of class C
7 Object-Oriented Programming
Types of Inheritance : Multi-Level
class B extends A
{
…..
B }// End of class B
class C extends B
{
C …..
}// End of class C
8 Object-Oriented Programming
Types of Inheritance : Multiple
Multiple Inheritance
A B Not Supported in
Java Directly
class A
{
….
} // End of class A
class B
{
….
C }// End of class B
class C extends A, B Wrong
{
…. Not Allowed in
} // End of class C
Java
9 Object-Oriented Programming