运算符重载运算符=使用友元函数

时间:2016-03-06 10:15:10

标签: c++ operator-overloading codeblocks

#include<iostream>
using namespace std;
class a
{
    int x;
    int y;
    public:
    void get_xy(int x,int y)
    {
        this->x=x;
        this->y=y;  
    }   
    friend int operator=(a,a);
};
int operator=(a a5,a a6)
{
    if(a5.x==a6.x&&a5.y==a6.y)
    {
        return(1);
    }
    else
    {
        return 0;
    }
}

int main()
{
    a a1,a2;
    a1.get_xy(5,4);
    a2.get_xy(5,4);
    if(a1=a2)
    {
        cout<<"y"<<endl;
    }
    else
    {
        cout<<"n"<<endl;
    }

    return 0;
}

我试图通过使用operator=函数重载作业friend,并在附加的屏幕截图中遇到错误。但是当我使用成员函数重载时,它按预期工作。代码张贴在上面。

1 个答案:

答案 0 :(得分:0)

C ++ 11 13.5.3 / 1:

An assignment operator shall be implemented by a non-static member function with exactly one parameter...

因此,该标准只是断然禁止将operator=重载为非成员。

并且作为旁注:不要过度分配意味着比较,它会混淆所有未来的维护者。