位置:首頁 > 高級語言 > D語言教學 > 重載

重載

D編程允許為一個函數名或在相同的範圍內操作,這就是所謂的函數重載和運算符重載分彆指定一個以上的定義。

重載聲明的是,已被聲明具有相同的名稱,在同一範圍內先前聲明的聲明的聲明,除了這兩個聲明具有不同的參數和明顯不同的定義(實現)。

當調用一個重載函數或運算符,編譯器確定最合適的定義,通過比較你用來調用函數或運算符的定義中指定的參數類型的參數類型來使用。選擇最合適的重載函數或運算符的過程被稱為重載解析。

函數重載

可以有相同的函數名多個定義在相同的範圍。該函數的定義必須由類型和/或參數在參數列表中的號碼彼此不同。不能重載函數聲明隻相差返回類型。

以下是其中相同功能的print()被用於打印不同的數據類型的示例:

import std.stdio;
import std.string;
class printData
{
   public:
      void print(int i) {
         writeln("Printing int: ",i);
      }

      void print(double  f) {
        writeln("Printing float: ",f );
      }

      void print(string s) {
        writeln("Printing string: ",s);
      }
};

void main()
{
   printData pd = new printData();

   // Call print to print integer
   pd.print(5);
   // Call print to print float
   pd.print(500.263);
   // Call print to print character
   pd.print("Hello D");
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

Printing int: 5
Printing float: 500.263
Printing string: Hello D

運算符重載

可以重新定義或超載最多可用在D內置運算符因此程序員可以使用運算符與用戶定義的類型也是如此。

運算符可以使用字符串運算其次是ADD,SUB超載等基於正被重載的運算符。我們可以重載運算符+,如下圖所示添加兩個箱子。

Box opAdd(Box b)
{
   Box box = new Box();
   box.length = this.length + b.length;
   box.breadth = this.breadth + b.breadth;
   box.height = this.height + b.height;
   return box;
}

以下是該示例使用一個成員函數來顯示運算符的重載的概念。在這裡,一個對象作為參數傳遞,其屬性將使用此對象來訪問,這將調用this操作符的對象可以使用此運算符來訪問,解釋如下:

import std.stdio;

class Box
{
   public:

      double getVolume()
      {
         return length * breadth * height;
      }
      void setLength( double len )
      {
         length = len;
      }

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

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

      Box opAdd(Box b)
      {
         Box box = new Box();
         box.length = this.length + b.length;
         box.breadth = this.breadth + b.breadth;
         box.height = this.height + b.height;
         return box;
      }
   private:
      double length;      // Length of a box
      double breadth;     // Breadth of a box
      double height;      // Height of a box
};
// Main function for the program
void main( )
{
   Box box1 = new Box();    // Declare box1 of type Box
   Box box2 = new Box();    // Declare box2 of type Box
   Box box3 = new Box();    // Declare box3 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);

   // Add two object as follows:
   box3 = box1 + box2;

   // volume of box 3
   volume = box3.getVolume();
   writeln("Volume of Box3 : ", volume);

}

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

Volume of Box1 : 210
Volume of Box2 : 1560
Volume of Box3 : 5400

運算符重載類型:

基本上,有三種類型的操作符如下麵列出重載。

S.N. 重載類型
1 一元運算符重載
2 二元運算符重載
3 比較操作符重載