Can link and Association applied interchangeably?
Answers were Sorted based on User's Feedback
Answer / surendra singh (suraj)
No, you cannot apply the link and Association
interchangeably. Since
* link is used represent the relationship between the two
objects.
* But Association is used represent the relationship
between the two classes.
link :: student:Abhilash course:MCA
Association:: student course
| Is This Answer Correct ? | 28 Yes | 1 No |
Answer / master
Links and associations can't be used interchangeably because
association is a relationship among classes and link is a
relationship among instance of classes.
e.g. => Person works for company.
Here a connection exists between two classes 'person' and
'company' so this is the example of association but if we
take one instance of each of the above classes as 'Ram' and
'Google' then we can be specific about the work which Ram is
doing for Google.
e.g. => Ram works as a programmer for Google.
But we cant use 'Person works as a programmer for Google'.
Hence we can't use links and associations interchangeably.
| Is This Answer Correct ? | 22 Yes | 0 No |
What do you mean by "explicitly implemeting an interface". Give an example?
What is early and late Binding?
What is the best tool for modeling and ORM framework
Every object has : state, behavior and identity - explain
2 Answers InfoAxon Technologies, Protech,
Differentiate between an abstract class and an interface?
Why should project managers complete hard problems first in an OOSAD project?
What is a pure virtual function?
Is it possible to provide method implementations in java interfaces? If possible, how do we provide them?
What does it mean that a method or class is abstract?
Does a concept HAVE to become a class in Design?
What are the main features of oops?
What is the function of messaging metaphor?