程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> c++類運算符重載遇到的函數形參問題

c++類運算符重載遇到的函數形參問題

編輯:C++入門知識

class A
{
public:
    A(int arg1, int arg2);
    ~A();
    A &operator = ( A &other);
    A operator + ( A &other);
private:
    int a, b;

};


A::A(int arg1, int arg2)
{
    a = arg1;
    b = arg2;
}

A::~A()
{

}

{
    if (this == &other)
    {
        return *this;
    }

    this->a = other.a;
    this->b = other.b;
    return *this;
}


{
    return A(a+other.a, b+other.b);
//    return other;
}

上面的這個類中重載了=和+號運算符, 但是參數都是引用,而不是const的引用,這樣在遇到形如

A a(1, 2);

a + A(3, 4);

的運算時就會出現錯誤,原因如下:

a + A(3, 4)等價於a.operator +(A(3, 4))

這裡要提到的是函數的返回值不能作為左值(可以參見http://blog.csdn.net/sunshinewave/article/details/7830701)

但是類中的函數聲明確是

A operator + ( A &other)

說明other在函數中是可以修改的,這就產生了矛盾,所以編譯器會提示無法把A類型的變量轉換成A&的錯誤提示

總結:在類中重載運算符時要把形參表示為const A&的形式,不僅為了減少開銷

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved