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)的区别的主要内容,如果未能解决你的问题,请参考以下文章
Operating system error 995(The I/O operation has been aborted because of either a thread)