Protected
Definition - 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.
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.
This definition was written in the context of C#.
Home
Dictionary
Tags
Development
Related Terms
Public (C#)
Private
Encapsulation (C#)
Object-Oriented Programming (OOP)
Access Modifiers
Base Class - .NET (C#)
Derived Class (.NET)
Override (C#)
Static (C#)
Related Videos
Related Links
Related White Papers
Other Resources
Related Tags
Categories:
.NET
Programming Languages
C Sharp
Development
Recommended For You
close
Computer Programming: From Machine Language to Artificial Intelligence
Read More
ยป
Tweet
Tweet
Popular White Papers
Techopedia Newsletter Sign-Up
Get Techopedia delivered to your inbox!
Term of the Day:
Get a new Techie Term sent to you every business day
Best of Techopedia:
We"ll bring you the best Techie articles each month.
Sign-In
Join Techopedia
Follow Us
Follow Techopedia on Facebook
Follow Techopedia on LinkedIn
Follow Techopedia on Twitter
Add Techopedia on Google Plus
Get Techopedia on RSS
Home
Dictionary
Articles
Tutorials
Newsletters
Development
Networks
Wireless
Support
Linux
Enterprise
Enterprise Apps
Security
CRM
IT Business
IT Careers
IT Management
Trends
Cloud Computing
Mobile computing
Personal Tech
Gaming
Internet
Search Engines
Social Media
World Wide Web
All Topics
Hacking
Online Marketing
Buzzwords and Jargon
Viruses
Operating Systems
Legal
People