1、internal 关键字是类型和类型成员的访问修饰符。只有在同一程序集的文件中,内部类型或成员才是可访问的,如下例所示:
public class BaseClass
{
// Only accessible within the same assembly
internal static int x = 0;
}
2、protected 关键字是一个成员访问修饰符。受保护成员在它的类中可访问并且可由派生类访问。
只有在通过派生类类型发生访问时,基类的受保护成员在派生类中才是可访问的。例如,请看以下代码段:
// protected_keyword.cs
using System;
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 会生成一个错误,因为 A 不是从 B 派生的。
结构成员无法受保护,因为无法继承结构。
此示例中,DerivedPoint 类派生自 Point。因此,可以从派生类直接访问基类的受保护成员。
// protected_keyword_2.cs
using System;
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);
}
}
输出:x = 10, y = 15
|