int & int::operator++() { *this +=1;//新版本 return *this;//马上返回新版本 }
const int int::operator++(int) { int oldValue = *this;//先保存老版本 ++(*this); return oldValue;//返回老版本 }