标签:rem and operator int const orm this post tor
// 前缀形式:增加然后取回值
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)的区别
标签:rem and operator int const orm this post tor
原文地址:http://www.cnblogs.com/tomcao/p/6011427.html