C# 中内部类变量的作用域是什么?
使用 internal 访问说明符设置内部变量。
internal double length; internal double width;
可以在成员定义所在的应用程序中定义的任何类或方法中访问具有 internal 访问说明符的任何成员。
示例
using System; namespace RectangleApplication { class Rectangle { //member variables internal double length; internal double width; double GetArea() { return length * width; } public void Display() { Console.WriteLine("Length: {0}", length); Console.WriteLine("Width: {0}", width); Console.WriteLine("Area: {0}", GetArea()); } } //end class Rectangle class ExecuteRectangle { static void Main(string[] args) { Rectangle r = new Rectangle(); r.length = 4.5; r.width = 3.5; r.Display(); Console.ReadLine(); } } }
输出
Length: 4.5 Width: 3.5 Area: 15.75
广告