0

Let's say I have inheritance like this

         Person
           |
     +-----+------+
     |            |
 Student       Teacher

Then I would call Person the Base.

How would I call Student?

Inherited class sounds stupid. Is there a single word for it?

Ben Smith
  • 19,589
  • 6
  • 65
  • 93
juergen d
  • 201,996
  • 37
  • 293
  • 362

1 Answers1

1

Basically using Base for super class, so: PersonBase
And for it's implementations it's common to add Impl like: StudentImpl and TeacherImpl

roeygol
  • 4,908
  • 9
  • 51
  • 88