请你来说一说++i和i++的实现
参考回答:
int& int::operator++() { *this +=1; return *this; }
2. i++ 实现:
const int int::operator(int) { int oldValue = *this; ++(*this); return oldValue; }
扫描二维码,关注牛客网
下载牛客APP,随时随地刷题