首頁  >  文章  >  後端開發  >  C# 中類別成員的預設存取權限是什麼?

C# 中類別成員的預設存取權限是什麼?

王林
王林轉載
2023-08-25 12:45:111307瀏覽

C# 中类成员的默认访问权限是什么?

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除