鱼C论坛

 找回密码
 立即注册
查看: 714|回复: 1

[已解决]C++递增运算符重载

[复制链接]
发表于 2021-1-19 15:46:48 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
using namespace std;

class MyInteger{
        friend ostream& operator<<(ostream& cout, MyInteger myint);
private:
        int m_num;
public:
        //构造函数 
        MyInteger()
        {
                m_num = 0;
        }
        
        //前置++操作
        MyInteger& operator++() 
        {
                m_num++;
                return *this;
        }
        
        //后置++操作 
        MyInteger operator++(int)
        {
                MyInteger temp = *this;
                m_num++;
                return temp;
        }
};

ostream& operator<<(ostream& cout, MyInteger myint)
{
        cout << "myint.m_num = " << myint.m_num << endl;
        return cout;
}

int main() {
        
        MyInteger myint;
        cout << ++myint << endl;
        cout << myint << endl;
        cout << myint++ << endl;
        cout << myint << endl;
        
        system("pause");
        
        return 0;
        
}

代码如上所示
求问在cout输出那块编译器是怎么知道++在对象前就调用第一个++重载函数,++在对象后就调用第二个++重载函数的
最佳答案
2021-1-19 16:03:33
c++规定的就是
operator++ () 是前置 ++重载, operator++(int) 是后置 ++ 重载。
++在对象前就调用 ++(),++在对象后就调用 ++(int)
这很明白啊。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-1-19 16:03:33 | 显示全部楼层    本楼为最佳答案   
c++规定的就是
operator++ () 是前置 ++重载, operator++(int) 是后置 ++ 重载。
++在对象前就调用 ++(),++在对象后就调用 ++(int)
这很明白啊。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 06:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表