protected(C# 参考)
程序员文章站
2022-05-13 22:53:33
protected(C# 参考) protected 关键字是一个成员访问修饰符。 受保护成员在其所在的类中可由派生类实例访问。 protected 保护访问。只限于本类和子类访问,本类的实例不能访问,但本类的派生类的实例可以访问(个人理解)。 示例 只有在通过派生类类型发生访问时,基类的受保护成员 ......
protected(c# 参考)
protected 关键字是一个成员访问修饰符。 受保护成员在其所在的类中可由派生类实例访问。
protected 保护访问。只限于本类和子类访问,本类的实例不能访问,但本类的派生类的实例可以访问(个人理解)。
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
转自:https://msdn.microsoft.com/zh-cn/magazine/bcd5672a(v=vs.120)