We are independent & ad-supported. We may earn a commission for purchases made through our links.
Advertiser Disclosure
Our website is an independent, advertising-supported platform. We provide our content free of charge to our readers, and to keep it that way, we rely on revenue generated through advertisements and affiliate partnerships. This means that when you click on certain links on our site and make a purchase, we may earn a commission. Learn more.
How We Make Money
We sustain our operations through affiliate commissions and advertising. If you click on an affiliate link and make a purchase, we may receive a commission from the merchant at no additional cost to you. We also display advertisements on our website, which help generate revenue to support our work and keep our content free for readers. Our editorial team operates independently of our advertising and affiliate partnerships to ensure that our content remains unbiased and focused on providing you with the best information and recommendations based on thorough research and honest evaluations. To remain transparent, we’ve provided a list of our current affiliate partners here.
Software

Our Promise to you

Founded in 2002, our company has been a trusted resource for readers seeking informative and engaging content. Our dedication to quality remains unwavering—and will never change. We follow a strict editorial policy, ensuring that our content is authored by highly qualified professionals and edited by subject matter experts. This guarantees that everything we publish is objective, accurate, and trustworthy.

Over the years, we've refined our approach to cover a wide range of topics, providing readers with reliable and practical advice to enhance their knowledge and skills. That's why millions of readers turn to us each year. Join us in celebrating the joy of learning, guided by standards you can trust.

What is Protected Inheritance?

By Rodney A. Crater
Updated: May 16, 2024

The field of computer science uses programming to create solutions to problems. C++ is a programming language used in computer science that utilizes object orientation to model the real world. In object-orientated programming, classes are created to provide a framework for object models that are used during the running of a program. Classes are often created in a structured hierarchy where more generalized parent classes are created first then used as a basis for more specifically detailed child classes. Protected inheritance allows descendant classes to have full and direct access to those predecessor member items that are implicitly inherited into descendant classes.

One of the major benefits of object orientation is that when a structure or class is created, one can hide the data and functionality of the class from other programming structures and functions if access is not necessary. In C++, this is accomplished by using access modifiers. If a programmer wants to deny access to the internal information and functions of a class from outside of the class, the keyword "private" is used — but inter-class access between inter-class members is always allowed. To limit access only to descendant classes as in protected inheritance, the keyword "protected" is utilized. The keyword "public" allows full access to member variables and functions.

Inheritance in software has the benefit of allowing programming code, which has already been created, to be indirectly reused. When a child class is created, all of the member variables and functions of the predecessor classes automatically become part of the child. The programmer does not have to re-code them. This is a major advantage when large hierarchies of classes are needed. An example of this might be when entities in a biological taxonomy model need to replicated in software.

Private inheritance happens when predecessor classes have designated their member elements as private. Children who implicitly receive these variables and functions do not have direct, immediate access to them, thus preserving certain features of the parent and child. With protected inheritance, when a parent declares an element as protected, the variables or functions are inherited, and the child can access them, but other classes cannot. Public inheritance allows the child to integrate and manipulate parent features. It also lets other structures have access to the child members as well.

Protected inheritance is an important concept in C++ programming. It helps to define the constraints under which a program will operate. Concisely written and well-engineered programs that utilize inheritance help to reduce application errors, aid in troubleshooting and give controlled flexibility to the standard object orientated principles of information hiding and encapsulation.

EasyTechJunkie is dedicated to providing accurate and trustworthy information. We carefully select reputable sources and employ a rigorous fact-checking process to maintain the highest standards. To learn more about our commitment to accuracy, read our editorial process.
Discussion Comments
Share
https://www.easytechjunkie.com/what-is-protected-inheritance.htm
EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.

EasyTechJunkie, in your inbox

Our latest articles, guides, and more, delivered daily.