
Lesson 15-3: Derived Classes
Inheritance, Polymorphism, and Object-Oriented Design | 393
Name __________________________________________ Date _______________________
Section _________________________________________
Objects of class Book are quite general. Specialize this class for use in a library. Library books need
two additional attributes: the Dewey Decimal Classification number (DDC) and the copy number.
The DDC is used to organize a collection by topic and is also used to determine where a book is
shelved in the library. Create a class LibBook that extends class Book. That is, it inherits the data
fields and functions from class Book and adds ...