D語言類成員函式


成員函式是特定於某個類中的函式。它作用於類當中它是一個成員公司的任何物件,可以存取一個類的所有成員為物件。

成員函式將使用點運算子(.)上一個物件,其中將操作與目標有關的資料被呼叫。

讓我們把上述概念來設定和獲取不同的類成員的值:

import std.stdio;

class Box
{
   public:
      double length;         // Length of a box
      double breadth;        // Breadth of a box
      double height;         // Height of a box

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

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

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

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


void main( )
{
   Box Box1 = new Box();    // Declare Box1 of type Box
   Box Box2 = new Box();    // Declare Box2 of type Box
   double volume = 0.0;     // Store the volume of a box here
 
   // box 1 specification
   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();
   writeln("Volume of Box1 : ",volume);

   // volume of box 2
   volume = Box2.getVolume();
   writeln("Volume of Box2 : ", volume);
}

當上面的程式碼被編譯並執行,它會產生以下結果:

Volume of Box1 : 210
Volume of Box2 : 1560