Inheritance Flashcards

(2 cards)

1
Q

What is the keyword that indicates inheritance

A

extends

eg:
public class ChildrensBook extends Book

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly