Reputation: 398
I have a class Employee and a class Mananger. Manager has the same abilities and attributes as employee but more functionality, is this association?
Upvotes: 0
Views: 50
Reputation: 6318
This is a typical case of Generalization with Employee being the superclass and Manager as a subclass.
Upvotes: 4