💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# protected(C# 参考) **protected** 关键字是一个成员访问修饰符。受保护成员在其所在的类中可由派生类实例访问。有关 **protected** 与其他访问修饰符的比较,请参见[可访问性级别](https://msdn.microsoft.com/zh-CN/library/ba0a1yw2.aspx)。 只有在通过派生类类型发生访问时,基类的受保护成员在派生类中才是可访问的。例如,请看以下代码段: ``` class A { protected int x = 123; } class B : A { static void Main() { A a = new A(); B 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 的实例。 结构成员无法受保护,因为无法继承结构。 此示例中,DerivedPoint 类派生自 Point。因此,可以从派生类直接访问基类的受保护成员。 ``` class Point { protected int x; protected int y; } class DerivedPoint: Point { static void Main() { DerivedPoint dpoint = new DerivedPoint(); // Direct access to protected members: dpoint.x = 10; dpoint.y = 15; Console.WriteLine("x = {0}, y = {1}", dpoint.x, dpoint.y); } } // Output: x = 10, y = 15 ``` 如果将 x 和 y 的访问级别更改为 [private](https://msdn.microsoft.com/zh-CN/library/st6sy9xe.aspx),编译器将发出错误信息: 'Point.y' is inaccessible due to its protection level. 'Point.x' is inaccessible due to its protection level. ## C# 语言规范 有关详细信息,请参阅 [C# 语言规范](https://msdn.microsoft.com/zh-CN/library/ms228593.aspx)。该语言规范是 C# 语法和用法的权威资料。 ## 请参阅 [C# 参考](https://msdn.microsoft.com/zh-CN/library/618ayhy6.aspx) [C# 编程指南](https://msdn.microsoft.com/zh-CN/library/67ef8sbd.aspx) [C# 关键字](https://msdn.microsoft.com/zh-CN/library/x53a06bb.aspx) [访问修饰符(C# 参考)](https://msdn.microsoft.com/zh-CN/library/wxh6fsc7.aspx) [可访问性级别(C# 参考)](https://msdn.microsoft.com/zh-CN/library/ba0a1yw2.aspx) [修饰符(C# 参考)](https://msdn.microsoft.com/zh-CN/library/6tcf2h8w.aspx) [public(C# 参考)](https://msdn.microsoft.com/zh-CN/library/yzh058ae.aspx) [private(C# 参考)](https://msdn.microsoft.com/zh-CN/library/st6sy9xe.aspx) [internal(C# 参考)](https://msdn.microsoft.com/zh-CN/library/7c5ka91b.aspx)