protected(C# 参考)
protected
关键字是一个成员访问修饰符。
注意
本页涵盖 protected
访问。 protected
关键字也属于 protected internal
和 private protected
访问修饰符。
受保护成员在其所在的类中可由派生类实例访问。
有关 protected
和其他访问修饰符的比较,请参阅可访问性级别。
示例 1
只有在通过派生类类型进行访问时,基类的受保护成员在派生类中才是可访问的。 以下面的代码段为例:
class A
{
protected int x = 123;
}
class B : A
{
static void Main()
{
var a = new A();
var b = new B();
// Error CS1540, because x can only be accessed by
// classes derived from A.
// a.x = 10;
// OK, because this class derives from A.
b.x = 10;
}
}
语句 a.x = 10
生成错误,因为它是在静态方法 Main 中生成的,而不是类 B 的实例。
无法保护结构成员,因为无法继承结构。
示例 2
在此示例中,DerivedPoint
类是从 Point
派生的。 因此,可以从派生类直接访问基类的受保护成员。
class Point
{
protected int x;
protected int y;
}
class DerivedPoint: Point
{
static void Main()
{
var dpoint = new DerivedPoint();
// Direct access to protected members.
dpoint.x = 10;
dpoint.y = 15;
Console.WriteLine($"x = {dpoint.x}, y = {dpoint.y}");
}
}
// Output: x = 10, y = 15
如果将 x
和 y
的访问级别更改为 private,编译器将发出错误消息:
'Point.y' is inaccessible due to its protection level.
'Point.x' is inaccessible due to its protection level.
C# 语言规范
有关详细信息,请参阅 C# 语言规范中的声明的可访问性。 该语言规范是 C# 语法和用法的权威资料。