• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

What is a good example of association

 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
as in <pre>
composition
/ \
/ \
/ \
/ \
/ \
aggregation association
</pre>
is it something as simple as
class A{}
class B{
public A a = new A();
}
or is it something deeper than that ?
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A train.
 
David O'Meara
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
(my appologies, I'm assuming this thread is going to be moved )
 
Ranch Hand
Posts: 263
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Mohanlal Karamchand:
as in <pre>
composition
/ \
/ \
/ \
/ \
/ \
aggregation association
</pre>
is it something as simple as
class A{}
class B{
public A a = new A();
}
or is it something deeper than that ?


association
/ \
/ \
/ \
/ \
/ \
aggregation composition
this seems more logical

also check out dependency( Class A calling a method of class B). Please check out the UML version 5. i like it except the word "semantic" [everthing is hiddedn under it]
 
Ranch Hand
Posts: 581
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My humble opinion, if the relationship between the two classes is not inheritance not aggregation not dependency, which are relatively easier to decide, then you may well relate the classes as association. For instance, traffic lights and cars, traffic lights conduct cars, association. Street traffic system aggregates both of the traffic lights class and cars class ( and many more ).
Does that make sense?

Regards,
Ellen
 
Sheriff
Posts: 6450
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm going to move this to the OO forum, as this discussion is far too meaningful for MD.
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Mohanlal Karamchand:
as in <pre>
composition
/ \
/ \
/ \
/ \
/ \
aggregation association
</pre>


Sorry, I don't think I do understand this diagram...


is it something as simple as
class A{}
class B{
public A a = new A();
}
or is it something deeper than that ?


This may well be a valid implementation of an association relationship between B and A (it may also be an aggregation or even composition - it can't be decided from this code snippet).
The semantic of an association from B to A is that instances of B may send messages to (call methods of) instances of class A.
Notice that for this, B doesn't need to have a field of type A. This may change in UML 2.0.
 
Ranch Hand
Posts: 275
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think he means that aggregation and association are two kinds of Composition.
Mr. Karamchand,
I noticed that this thread was moved here from MD.
What is the objective of this question ?
And why are you using a fake name in the OOP forum ?
 
Ilja Preuss
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Sahir Shibley:
I think he means that aggregation and association are two kinds of Composition.


Then he is wrong - composition is a special kind of aggregation, which is a special kind of an association.
 
Sahir Shibley
Ranch Hand
Posts: 275
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
He seems to have been influenced by Kafura.
http://people.cs.vt.edu/~kafura/cs2704/aggregation.concept.html
Kafura goes on to say "An association among objects is created when an object contains references or pointers to other objects."
That statement seems to imply that association is a relationship between the class and it's public data member ???
 
Ilja Preuss
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Sahir Shibley:
He seems to have been influenced by Kafura.
http://people.cs.vt.edu/~kafura/cs2704/aggregation.concept.html


Uh oh - what a mess...
http://ootips.org/uml-hasa.html has it right, IMO.


Kafura goes on to say "An association among objects is created when an object contains references or pointers to other objects."


That's bogus - there are no associations between objects, only links (which are instances of associations). I think the reference above explains very well what an association is.
reply
    Bookmark Topic Watch Topic
  • New Topic