重载运算符时出错(必须是非静态成员函数)

时间:2012-10-11 20:40:36

标签: c++ operator-overloading

我正在自己编写字符串类。我有这样的代码。我只想重载operator=。这是我的实际代码,我在代码的最后部分出现错误。

#include <iostream>
#include <string.h>
#include <stdlib.h>

using namespace std;

class S {
    public:
        S();
        ~S() { delete []string;}
        S &operator =(const S &s);

    private:
        char *string;
        int l;
};

S::S()
{
    l = 0;
    string = new char[1];
    string[0]='\0';
}

S &operator=(const S &s)
{
    if (this != &s)
    {
        delete []string;
        string = new char[s.l+1];
        memcpy(string,s.string,s.l+1);
        return *this;
    }
    return *this;
}

但不幸的是我收到错误'S&amp; operator =(const S&amp;)'必须是非静态成员函数。

2 个答案:

答案 0 :(得分:18)

您缺少班级名称:

这是全局运算符,=不能是全局运算符:

S &operator=(const S &s)

您必须将其定义为类函数:

S & S::operator=(const S &s)
//  ^^^

答案 1 :(得分:3)

我相信PiotrNycz提供了合理的答案。请原谅我再补充一句话。

在c ++中,赋值运算符重载函数不能是friend function。对operator =使用friend函数会导致相同的编译器错误“overloading = operator必须是非静态成员函数”。