C# 中類別成員的預設存取是私有的。
成員變數(即類別成員)是物件的屬性(從設計角度來看),並且它們保持私有以實現封裝。這些變數只能使用公共成員函數存取。
using System; namespace RectangleApplication { class Rectangle { //member variables private double length; private double width; public void Acceptdetails() { length = 10; width = 14; } 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.Acceptdetails(); r.Display(); Console.ReadLine(); } } }#
以上是C# 中類別成員的預設存取權限是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!