关于C++类中++的运算符重载问题,后置自增表达式不行?
巴扎黑
巴扎黑 2017-04-17 13:35:01
0
2
718

在程序设计基础这本书中写的是:
后置自增表达式 Aobject++
成员函数重载的解释为

Aobject.operator++(0)

其中0是一个伪值

#include<iostream>
using namespace std;
class complex
{
    private:
        double real;                                    //实部 
        double imag;                                    //虚部 
    public:
        complex &operator ++();
        friend void output(complex &c);
        friend void intput(complex &c);
};
complex &complex::operator++ ()
{
    real=real+1;
    imag=imag+1;
}
void output(complex &c)
{
    cout<<"c++="<<"("<<c.real<<","<<c.imag<<"i)";
}

void intput(complex &c)
{
    cin>>c.real>>c.imag;
}

int main()
{
    complex c;
    intput(c);
    c++;
    output(c);
    
}

在这段代码编译时会提示:
[Error] no 'operator++(int)' declared for postfix '++' [-fpermissive]
编译器是DEVC++,在vs2010下也会警告,是编译器的问题吗

巴扎黑
巴扎黑

全部回复(2)
PHPzhong

雷雷

黄舟
complex &operator ++();

你这句是前置++操作符的重载
C++后置++操作符的重载声明可以在()里面加个int来实现,即:

 complex operator ++(int);    //后置++,返回值不是引用类型

另外,你的重载操作符也没有return语句,main函数也没return 0;
最好是拷贝构造函数、拷贝赋值运算符都实现下。

complex & operator = (const complex &c)
{
    real = c.real;
    imag = c.imag;
    return *this;
}
complex complex::operator++ (int)    //后置++
{
    auto ret = *this;
    real = real + 1;
    imag = imag + 1;
    return ret;
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板