Inheritance Flashcards
(2 cards)
1
Q
What is the keyword that indicates inheritance
A
extends
eg:
public class ChildrensBook extends Book
2
Q
List and describe a benefit of inheritance
A
Code Reusability:
- Inheritance allows a new derived class to inherit the attributes and behaviors of an existing class
- The subclass can reuse the code of the superclass without having to rewrite it