Protected

What Does Protected Mean?

Protected, in C#, is a keyword used to declare the accessibility of a class member such that access to that member is limited to the containing class in which it is declared or to any class derived from the containing class. Protected accessibility can be used in field, method and property declarations to prevent them from being fully visible outside of their class.

Advertisements

Protected is an access modifier that enables the member of a class to be more visible than private but less than public accessibility. The protected members of a base class can be shared only by their descendants, which can override or use them.

Protected modifier helps to implement the concept of encapsulation in C# object-oriented programming. It is mainly used with members of a base class that are re-used in the derived class, which helps to provide centralization of common logic along with rich class hierarchy.

Techopedia Explains Protected

A protected member can be accessible in the derived class only if the access takes place through the derived class. If it needs to be accessed from outside the program text of the class in which it is declared, it should be through an instance of derived type or a class type constructed from it.

For example, BankAccount class represents the account details of a user and can define a method, CalculateInterest, as protected so that any class derived from BankAccount class (such as SavingsAccount, CheckingAccount, etc.) can override the CalculateInterest method with the code necessary to calculate interest based on the type of account.

A protected member cannot be used with a static modifier because it can be accessed only through an instance. A protected modifier cannot be used with members of a struct because inheritance is not supported by struct.

A protected method can be declared with the "virtual" modifier to extend the logic that is necessary to be executed for specialization in the derived class.

Advertisements

Related Terms

Latest DevOps Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…