精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

C++ 重載運算符和重載函數

c++ 重載運算符和重載函數

c++ 允許在同一作用域中的某個函數和運算符指定多個定義,分別稱為函數重載和運算符重載。

重載聲明是指一個與之前已經在該作用域內聲明過的函數或方法具有相同名稱的聲明,但是它們的參數列表和定義(實現)不相同。

當您調用一個重載函數或重載運算符時,編譯器通過把您所使用的參數類型與定義中的參數類型進行比較,決定選用最合適的定義。選擇最合適的重載函數或重載運算符的過程,稱為重載決策。

 

1. c++ 中的函數重載

在同一個作用域內,可以聲明幾個功能類似的同名函數,但是這些同名函數的形式參數(指參數的個數、類型或者順序)必須不同。您不能僅通過返回類型的不同來重載函數。

下面的實例中,同名函數 print() 被用于輸出不同的數據類型:

#include <iostream>
using namespace std;
 
class printdata 
{
   public:
      void print(int i) {
        cout << "printing int: " << i << endl;
      }

      void print(double  f) {
        cout << "printing float: " << f << endl;
      }

      void print(char* c) {
        cout << "printing character: " << c << endl;
      }
};

int main(void)
{
   printdata pd;
 
   // 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 c++");
 
   return 0;
}

當上面的代碼被編譯和執行時,它會產生下列結果:

printing int: 5
printing float: 500.263
printing character: hello c++

 

2. c++ 中的運算符重載

您可以重定義或重載大部分 c++ 內置的運算符。這樣,您就能使用自定義類型的運算符。

重載的運算符是帶有特殊名稱的函數,函數名是由關鍵字 operator 和其后要重載的運算符符號構成的。與其他函數一樣,重載運算符有一個返回類型和一個參數列表。

box operator+(const box&);

聲明加法運算符用于把兩個 box 對象相加,返回最終的 box 對象。大多數的重載運算符可被定義為普通的非成員函數或者被定義為類成員函數。如果我們定義上面的函數為類的非成員函數,那么我們需要為每次操作傳遞兩個參數,如下所示:

box operator+(const box&, const box&);

下面的實例使用成員函數演示了運算符重載的概念。在這里,對象作為參數進行傳遞,對象的屬性使用 this 運算符進行訪問,如下所示:

#include <iostream>
using namespace std;

class box
{
   public:

      double getvolume(void)
      {
         return length * breadth * height;
      }
      void setlength( double len )
      {
          length = len;
      }

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

      void setheight( double hei )
      {
          height = hei;
      }
      // 重載 + 運算符,用于把兩個 box 對象相加
      box operator+(const box& b)
      {
         box box;
         box.length = this->length + b.length;
         box.breadth = this->breadth + b.breadth;
         box.height = this->height + b.height;
         return box;
      }
   private:
      double length;      // 長度
      double breadth;     // 寬度
      double height;      // 高度
};
// 程序的主函數
int main( )
{
   box box1;                // 聲明 box1,類型為 box
   box box2;                // 聲明 box2,類型為 box
   box box3;                // 聲明 box3,類型為 box
   double volume = 0.0;     // 把體積存儲在該變量中
 
   // box1 詳述
   box1.setlength(6.0); 
   box1.setbreadth(7.0); 
   box1.setheight(5.0);
 
   // box2 詳述
   box2.setlength(12.0); 
   box2.setbreadth(13.0); 
   box2.setheight(10.0);
 
   // box1 的體積
   volume = box1.getvolume();
   cout << "volume of box1 : " << volume <<endl;
 
   // box2 的體積
   volume = box2.getvolume();
   cout << "volume of box2 : " << volume <<endl;

   // 把兩個對象相加,得到 box3
   box3 = box1 + box2;

   // box3 的體積
   volume = box3.getvolume();
   cout << "volume of box3 : " << volume <<endl;

   return 0;
}

當上面的代碼被編譯和執行時,它會產生下列結果:

volume of box1 : 210
volume of box2 : 1560
volume of box3 : 5400

 

3. 可重載運算符/不可重載運算符

下面是可重載的運算符列表:

+-*/%^
&|~!,=
<><=>=++--
<<>>==!=&&||
+=-=/=%=^=&=
|=*=<<=>>=[]()
->->*newnew []deletedelete []

下面是不可重載的運算符列表:

::.*.?:

 

4. 運算符重載實例

下面提供了各種運算符重載的實例,幫助您更好地理解重載的概念。

序號運算符和實例
1一元運算符重載
2二元運算符重載
3關系運算符重載
4輸入/輸出運算符重載
5 ++ 和 -- 運算符重載
6賦值運算符重載
7函數調用運算符 () 重載
8下標運算符 [] 重載
9類成員訪問運算符 -> 重載

下一節:c++ 一元運算符重載

c++ 簡介

相關文章