a++
++a
++有2种方式,那么在重载++的时候要怎么区分:
前置:
T& operator++(){
do something
return *this;
}
后置:
const T operator++(int){
T tmp = *this;
++(*this);
return tmp;
}
区别主要在:
1.返回值
2.函数参数
时间: 2024-10-15 13:54:17
a++
++a
++有2种方式,那么在重载++的时候要怎么区分:
前置:
T& operator++(){
do something
return *this;
}
后置:
const T operator++(int){
T tmp = *this;
++(*this);
return tmp;
}
区别主要在:
1.返回值
2.函数参数