++操作符的重载
1.全局函数和成员函数都可以进行重载。
2.前置++操作符不需要参数。
3.后置++操作符需要int类型的占位参数(区分前置后置)。
#include <iostream> #include <string> using namespace std; class Test { int mValue; public: Test(int i) { mValue = i; } int value() { return mValue; } Test& operator ++ () // 前置++ { ++mValue; return *this; // 返回加一后的数 } Test operator ++ (int) // ++后置要带一个参数 { Test ret(mValue); mValue++; return ret; // 返回加一前的数 } }; int main() { Test t(0); t++; ++t; return 0; }
原文地址:https://www.cnblogs.com/zsy12138/p/10840356.html
时间: 2024-10-15 02:36:03