公共存取修飾符允許一個類別將其成員變數和成員函數暴露給其他函數和物件。任何公共成員都可以從類別外部存取。
在下面的範例中,變數length和width已經被宣告為公共的。現在你甚至可以在Main()方法之外存取它們。
這些變數是使用類別的實例來存取的。
Rectangle r = new Rectangle(); r.length = 4.5; r.width = 3.5;
讓我們來看完整的程式碼。
Using System; namespace RectangleApplication { class Rectangle { // member variables public double length; public double width; public 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(); } } }#
以上是C#中的類別的公共成員變數的作用範圍是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!