Inheritance3 PDF
Inheritance3 PDF
1
Real-world Examples: Animals
Animal
Dog Cat
2
Example #2: Timepieces
3
Multiple inheritance
– A derived class can have more than one base class
– Java does not support it – uses “interface” instead.
4
Example #3: Shapes
Basic Shape
5
Example #4: Wireless Telephony
Mobile initiated
message
6
Value of inheritance?
• Helps us to break software into manageable
pieces
• Existing classes can be morphed to design new
classes – code reuse
• Enables us to group different types of objects
together and do some action on all of them.
7
Inheritance Examples in
Java and C++
8
Back to Example #1:
Animals
Animal
Dog Cat
10
Add Human?
Animal Human
Dog Cat
AnimalActions
Animal Human
Dog Cat
12
Java: Interface
AnimalActions
Animal
Human
Dog Cat
13
Example from Wiki:
Bad use of Inheritance
Whistler
Parrot Human
14
Example from Wiki
15
Concepts
• Interface
16
C++
Animal AnimalActions
17
Java: Interface
Animal AnimalActions
Human
Dog Cat
18
Inheritance Examples in
Java and C++
19
References
• http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming -
Animals : Inheritance coding examples in Java/C++/…
• http://en.wikipedia.org/wiki/Interface_%28Java%29 – Java Interfaces
20