What is aggregation and composition ?
Answer / balbir
Aggregation differs from ordinary composition in that it
does not imply ownership. In composition, when the owning
object is destroyed, so are the contained objects. In
aggregation, this is not necessarily true. For example, a
university owns various departments (e.g., chemistry), and
each department has a number of professors. If the
university closes, the departments will no longer exist,
but the professors in those departments will continue to
exist. Therefore, a University can be seen as a composition
of departments, whereas departments have an aggregation of
professors. In addition, a Professor could work in more
than one department, but a department could not be part of
more than one university
| Is This Answer Correct ? | 6 Yes | 1 No |
Explain purpose of sleep() method in java?
In Serialization, whether you will use Static variables?
What advantage does an entity bean have over a sessin bean?
what are the difference between Java and .Net?
Is class forname reflection?
what is the difference between static block and static method
what is the use of pojo (plain old java objects)? how it is interact with crystal reports? pls urgent
What are peerless components?
How can we use primitive data types as objects?
5 What is Java exception handling?
What is singleton class example?
What is the difference between yielding and sleeping in java programming?