摘要: 前缀自增 UPInt & UPint::operator++() { *this+=1; return *this; } 后缀自增 const UPInt & UPint::operator++(int ) { UPint oldValue=*this; ++(*this); return oldV 阅读全文
posted @ 2016-06-12 15:39 simple_wxl 阅读(272) 评论(0) 推荐(0) 编辑