C# 中類的成員函式有哪些?


類的成員函式是在類定義中具有其定義或其原型(與任何其他變數類似)的函式。它對作為一個成員的類的物件進行操作,並可以訪問該物件的所有類成員。

以下是成員函式的一個示例 -

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

以下是顯示如何在 C# 中訪問成員函式的示例。

示例

 現場演示

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;

         // Declare Box2 of type Box
         // box 1 specification
         Box1.setLength(8.0);
         Box1.setBreadth(9.0);
         Box1.setHeight(7.0);

         // box 2 specification
         Box2.setLength(18.0);
         Box2.setBreadth(20.0);
         Box2.setHeight(17.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();
      }
   }
}

輸出

Volume of Box1 : 504
Volume of Box2 : 6120

更新於:2020 年 6 月 20 日

2 萬個+ 瀏覽量

啟動您的 職業生涯

完成課程並獲得認證

入門
廣告
© . All rights reserved.