25

我正在自己编写字符串类。我有这样的代码。我只想超载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& operator=(const S&)' must be a nonstatic member function。

4

2 回答 2

42

您缺少班级名称:

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

S &operator=(const S &s)

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

S & S::operator=(const S &s)
//  ^^^
于 2012-10-11T21:00:55.900 回答
6

我相信 PiotrNycz 提供了合理的答案。在这里,请原谅我再补充一个字。

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

于 2014-01-07T23:14:39.367 回答