Difference between revisions of "Association"

esse quam videri
Jump to: navigation, search
(See also)
Line 1: Line 1:
  
 
=Definition=
 
=Definition=
 +
In object-oriented programming, it is the relationship between classes of objects. It allows one object instance to cause another to perform an action.  This is known as “sending a message” or “calling a method”
 +
 +
=What does this mean=
 +
Similar to the relationship between a Teacher and a student. A student can go to multiple teachers and a teacher can have multiple students. 
  
 
=Relevance=
 
=Relevance=

Revision as of 21:35, 21 June 2019

Definition

In object-oriented programming, it is the relationship between classes of objects. It allows one object instance to cause another to perform an action. This is known as “sending a message” or “calling a method”

What does this mean

Similar to the relationship between a Teacher and a student. A student can go to multiple teachers and a teacher can have multiple students.

Relevance

Explanation

Resources

See also

Notes

External Links