Containment (computer programming)

For other uses, see Containment (disambiguation).

Composition that is used to store several instances of the composited data type is referred to as containment. Examples of such containers are arrays, associative arrays, binary trees, and linked lists.

In UML, containment is depicted with a multiplicity of 1 or 0..n (depending on the issue of ownership), indicating that the data type is composed of an unknown number of instances of the composited data type.

In OOP supported languages, containership means an object is created within another object.

For Example in C++:

class A
{
        int a;
}x;

class B
{
        A y; // All the data members and member functions of class A can be accessed through the object 'y'
}z;

See also

External links

This article is issued from Wikipedia - version of the 10/14/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.