What’s difference between Association, Aggregation and
Inheritance relationships?
Answer Posted / purusoth
Class hierarchies (Inheritance and aggregation)
What is difference between Association, Aggregation and
Inheritance relationships?
In object oriented world objects have relation and
hierarchies in between them. There are
basically three kind of relationship in Object Oriented
world :-
Association
This is the simplest relationship between objects. Example
every customer has sales. So
Customer object and sales object have an association
relation between them.
Aggregation
This is also called as composition model. Example in order
to make a “Accounts” class it
has use other objects example “Voucher”, “Journal”
and “Cash” objects. So accounts
class is aggregation of these three objects.
Inheritance
Hierarchy is used to define more specialized classes based
on a preexisting generalized
class. Example we have VEHICLE class and we can inherit
this class make more
specialized class like CAR, which will add new attributes
and use some existing qualities
of the parent class. Its shows more of a parent-child
relationship. This kind of hierarchy
is called inheritance.
| Is This Answer Correct ? | 26 Yes | 4 No |
Post New Answer View All Answers
What is fcl in c#?
How does the lifecycle of Windows services differ from Standard EXE?
What are examples of desktop applications?
What does convert toint32 mean?
What is double c#?
Why do we need events in c#?
If multiple interfaces are inherited and they have conflicting method names; What will happen ?
Is enum a value type c#?
What are the types of access modifiers?
What is the use of command builder?
How to add controls dynamically to the form using c#.net.
Can you store strings in arrays?
Can we write class inside a class in c#?
What namespace is list in c#?
If I want to override a method one of class A and in class b then how do you declare?