ArchitectureCode Structure
KW-0074Inheritance
Concept
Meaning
object-oriented concept where a class derives properties and behavior from another class
Example
“Child service class extends base service to reuse common functionality”
Reference
Promotes code reuse; can lead to tight coupling if overused
Related
polymorphismoopreuse