Introduction to OOP: Chapter 13: Multiple Inheritance
[next]
[previous]
[audio]
[real]
[text]
Problem with MI - Name Ambiguity
What happens when same name is used in both parent classes.
A CardDeck knows how to
draw
a Card.
A GraphicalItem knows how to
draw
an image on a screen.
A GraphicalCardDeck should be able to
draw
. which?
Intro OOP,
Chapter 13
, Slide 7