// 前缀形式:
int& int::operator++() //这里返回的是一个引用形式,就是说函数返回值也可以作为一个左值使用
{//函数本身无参,意味着是在自身空间内增加1的
*this += 1; // 增加
return *this; // 取回值
}
//后缀形式:
const int int::operator++(int) //函数返回值是一个非左值型的,与前缀形式的差别所在。
{//函数带参,说明有另外的空间开辟
int oldValue = *this; // 取回值
++(*this); // 增加
return oldValue; // 返回被取回的值
}
Q:int a=3,b=0 ;b=a++ + ++a + a++;
所以b等于oldValue+this+oldValue
this指向a的地址,++a先对a加1,再返回a的地址。
a++时,a的oldValue是3,而this指向的a的地址中a=4;
++a时,this指向a的地址,* this+=1;a变成5;
a++时,a的oldValue是5,而*this指向的a的地址中a=6;