菜鸟笔记
提升您的技术认知

c 重载运算符和重载函数-ag真人游戏

阅读 : 256

c 允许在同一作用域中的某个函数运算符指定多个定义,分别称为函数重载运算符重载

重载声明是指一个与之前已经在该作用域内声明过的函数或方法具有相同名称的声明,但是它们的参数列表和定义(实现)不相同。

当您调用一个重载函数重载运算符时,编译器通过把您所使用的参数类型与定义中的参数类型进行比较,决定选用最合适的定义。选择最合适的重载函数或重载运算符的过程,称为重载决策

c 中的函数重载

在同一个作用域内,可以声明几个功能类似的同名函数,但是这些同名函数的形式参数(指参数的个数、类型或者顺序)必须不同。您不能仅通过返回类型的不同来重载函数。

下面的实例中,同名函数 print() 被用于输出不同的数据类型:

#include 
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(string 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  

c 中的运算符重载

您可以重定义或重载大部分 c 内置的运算符。这样,您就能使用自定义类型的运算符。

重载的运算符是带有特殊名称的函数,函数名是由关键字 operator 和其后要重载的运算符符号构成的。与其他函数一样,重载运算符有一个返回类型和一个参数列表。

box operator (const box&);

声明加法运算符用于把两个 box 对象相加,返回最终的 box 对象。大多数的重载运算符可被定义为普通的非成员函数或者被定义为类成员函数。如果我们定义上面的函数为类的非成员函数,那么我们需要为每次操作传递两个参数,如下所示:

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

下面的实例使用成员函数演示了运算符重载的概念。在这里,对象作为参数进行传递,对象的属性使用 this 运算符进行访问,如下所示:

#include 
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 <

当上面的代码被编译和执行时,它会产生下列结果:

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

可重载运算符/不可重载运算符

下面是可重载的运算符列表:

- * / % ^
& | ~ ! , =
< > <= >= --
<< >> == != && ||
= -= /= %= ^= &=
|= *= <<= >>= [] ()
-> ->* new new [] delete delete []

下面是不可重载的运算符列表:

:: .* . ?:

运算符重载实例

下面提供了各种运算符重载的实例,帮助您更好地理解重载的概念。

序号 运算符和实例
1 一元运算符重载
2 二元运算符重载
3 关系运算符重载
4 输入/输出运算符重载
5 和 -- 运算符重载
6 赋值运算符重载
7 函数调用运算符 () 重载
8 下标运算符 [] 重载
9 类成员访问运算符 -> 重载
网站地图