Javatpoint Logo
Javatpoint Logo

What is containership in C++

A key idea in object-oriented programming called containership enables the construction of sophisticated data structures out of simpler ones. Containership is essentially the practice of putting one object inside another. It is made possible by making use of object pointers that enable the development of intricate relationships between objects. We will examine C++ containership in this blog article, including its syntax, sample code, and results.

When using the C++ containership syntax, a class is made up of a different class as one among its member variables. To accomplish this, an object pointer is initialized in the constructor after being declared as an internal variable of the class. Here's an illustration:

This example uses a pointer (OtherClass*) as an internal variable to incorporate OtherClass inside of ContainerClass. The constructor initializes other Object by employing the new keyword to create a fresh instance of OtherClass. Using the delete keyword, the destructor dealocates the memory that otherObject used.

Example Code

Let's examine a C++ containership example. In this example, the Rectangle class will have a Point class as one of its membership variables. A point in two dimensions is represented by the Point class and has x and y coordinates. The top-left corner, width, and height of a rectangle in two dimensions are all represented by points in the Rectangle class.

Output:

Rectangle width: 30
Rectangle height: 40
Rectangle top-left corner coordinates: (10, 20)

Explanation:

In this illustration, the Point class represents a point with x and y coordinates in a two-dimensional space. The top-left corner, width, and height of a rectangle in two dimensions are all represented by points in the Rectangle class. One of the member variables of the Rectangle class is a Point, which is initialized in the constructor.

We create a Rectangle object in the main () function with the top-left corner at (10, 20), a width of 30, & a height of 40. The width, height, & top-left corner dimensions of the rectangle are then printed after retrieving the "topLeftPointobject" using the getTopLeft() method.

Conclusion:

A key idea in object-oriented programming called containership enables the construction of sophisticated data structures out of simpler ones. Using object pointers, containership is accomplished in C++ by enclosing one object inside another. In this blog post, we looked at the C++ containership syntax and looked at an example program that uses containership to build a class called Rectangle with a Point class as one of its component variables. The output from the given code also showed that the Rectangle object had been successfully created and initialized. We can write more sophisticated and potent C++ programs by comprehending containership and employing it in our code.

Containership permits code reuse and modularity in addition to enabling the building of complicated data structures. We can design code that is more modular and simpler to maintain by developing smaller classes that can be utilized as variable members within larger classes. In addition, containership can help our code run faster by using less memory and enhancing data locality. When utilized wisely, containership has the potential to be a potent tool for producing successful and high-caliber C++ program.


Next TopicCerr in C++





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA