C# 中的私有變數


私有訪問修飾符允許類向其他函式和物件隱藏其成員變數和成員函式。只有同類的函式才能訪問其私有成員。即使類的例項也無法訪問其私有成員。

建立私有變數 -

private double length;

讓我們看一個例子。這裡,如果試圖訪問設定為私有的 length 變數,那麼將會產生以下錯誤。

BoxApplication.Box.length' is inaccessible due to its protection level

讓我們現在看看整個示例 -

示例

using System;

namespace BoxApplication {
   class Box {
      private double length; // Length of a box
      private double breadth; // Breadth of a box
      private double height; // Height of a box

      public void setLength( double len ) {
         length = len;
      }

      public void setBreadth( double bre ) {
         breadth = bre;
      }

      public void setHeight( double hei ) {
         height = hei;
      }

      public double getVolume() {
         return length * breadth * height;
      }
   }

   class Boxtester {
      static void Main(string[] args) {
         Box Box1 = new Box(); // Declare Box1 of type Box
         Box Box2 = new Box();
         double volume;

         // ACcessing private variables outside the class gives an error.
         // Box1.length = 10;

         Box1.setLength(6.0);
         Box1.setBreadth(7.0);
         Box1.setHeight(5.0);

         // box 2 specification
         Box2.setLength(12.0);
         Box2.setBreadth(13.0);
         Box2.setHeight(10.0);

         // volume of box 1
         volume = Box1.getVolume();
         Console.WriteLine("Volume of Box1 : {0}" ,volume);

         // volume of box 2
         volume = Box2.getVolume();
         Console.WriteLine("Volume of Box2 : {0}", volume);

         Console.ReadKey();
      }
   }
}

更新於: 2020 年 6 月 21 日

5 萬 + 瀏覽

開始您的職業生涯

透過完成課程獲得認證

入門
廣告
© . All rights reserved.