What’s difference between Association, Aggregation and
Inheritance relationships?
Answer Posted / meenakshi sharma
Association- Association is used for establishing
relationship between classes. Association describes links
between(among) classes. For example, if a professor works
in a university then it can be represent as the assciation
relationship between professor and university class.
Aggregation-Aggregation is a concept that is used to
express "part-of" types of associations between
objects.Aggregation is seen as a relationship in which an
assembly class is related to component class. In this
component objects are not having seperate existence, they
depend on composite objects.
Inheritance-Inheritance is an object orientation concept
which allow reusability of design/code. Basic meaning of
inheritance is that if one class is already defined than
another class which also passes the property of existing
class can be defined and inherit the property of existing
class. For example, if a class named Student is defined and
another class for Post Graduate students is to be defined
then PG Student class can inherit the Student class.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is the use of return in c#?
Explain more on CLR
What is firstordefault c#?
List the difference between the virtual method and the abstract method?
Describe the types of comments in c#?
Explain About friend and Protected friend
How does bubble sort work?
What are object pooling and connection pooling and difference between them?
Why main is static in c#?
What is difference between comparable and comparator?
How do you create partial methods?
Is string a data type in c#?
What is the base class from which all value types are derived?
How do I create a dbml file?
What are the principles of delegation?