Private Inheritance in C++Private InheritancePrivate inheritance is a type of different method in which we can implement the has-a relationship. With the help of private inheritance, we can convert the protected, and public members of the class became private members of the class. This means after implementing the private member class, all the bases of the member class become a private class. However, we can implement these private classes inside the member function of the derived class. Let's briefly understand private inheritance by taking a program. In the above program, in the public inheritance, if the relationship between two classes is set to be a private class, then the compiler cannot convert the derived class into the base class. That's why the function eat() can not be called by the object S. In the case of public inheritance, the public method of the base class becomes the public method of the derived class. In other words, we can say that the derived class inherits the property of the base class with the help of inheritance. This is a type of IS-A relationship. But in the case of private inheritance, the public method of the base class becomes the private method for the derived class, even if the base class is protected or public. Here the derived class does not inherit the property of the base class. But we should be very careful in the case of private inheritance. Private inheritance is very confusing. Here the, inherit does not mean own. Suppose the parent gave the secret recipe of the special candy to the child with a condition to keep this secret. The child is allowed to give different varieties of candy to the people but is not allowed to share the recipe of that candy. With the help of private inheritance, the derived class can be implemented by the base class but not owned by it. Therefore the derived class does not show its interface to the outside world. The only thing that is shown to the outside world is the product. With the help of private inheritance, a class can be inherited by the implementation. The class declaration can be directly accessed by the user who is a part of the interface. The user can also access the implementation class indirectly through the class declaration. ExampleOutput: Explanation: As we see from the example, the Car class winds up with an inherited Engine component such as a cylinder. The Car method can use the Engine method, getCylinder(), internally to access the Engine component, cylinder. Conclusion
Next TopicSocket Programming in C/C++ |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India