operator++()和operator++(int)的区别

Posted tomcao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了operator++()和operator++(int)的区别相关的知识,希望对你有一定的参考价值。

// 前缀形式:增加然后取回值

UPInt& UPInt::operator++()
{
 *this += 1; // 增加
 return *this; // 取回值
}

// postfix form: fetch and increment

const UPInt UPInt::operator++(int)
{
 UPInt oldValue = *this; // 取回值
 ++(*this); // 增加
 return oldValue; // 返回被取回的值
}

以上是关于operator++()和operator++(int)的区别的主要内容,如果未能解决你的问题,请参考以下文章

c++ operator 的CONST应用

在operator =中要处理“自我赋值”

Operating system error 995(The I/O operation has been aborted because of either a thread)

向量上的 C++ operator() 优化

指向成员数组的静态指针,用于安全的operator []访问

HDU 6134 Battlestation Operational(莫比乌斯反演)