When do you prefer to use composition than aggregation?
Answers were Sorted based on User's Feedback
Answer / dan
Use composition if parts cannot exist w/o container; Use
aggregation if parts can exist w/o container.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rajendra tambat
when you sure that the creation and destruction of part
class is in control of whole class you will use composition
where as the part can exist without whole class you use
aggrigation.
in compositition you will create the object of part as a
member variable
in aggrigation you will hold the reference to the part
class in whole class
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / abdul wahab
when madam says dear student use compositon we use
aggregation and when madam says use compostion we use
compositons....................
| Is This Answer Correct ? | 0 Yes | 3 No |
In an Java interview, the Following question was asked.. How do you represent a class in UML?
What is component diagrams in UML?
What are interfaces in UML?
Detail whether UML can be used as a programming language?
What are the advantages of using UML?
What are sequence diagrams in UML?
What are the approaches to preparing state chart?
What is the difference between Activity and sequence diagrams?
What are the elements which are utilized in the state chart diagram?
What are the messages and the dynamic diagrams?
How do you convert uses cases into test cases?
What is modeling? What are the advantages of creating a model?