摘要: 前缀递增和后缀递增 class NewInt { public: NewInt():RootInt(0){}; NewInt(int IniInt):RootInt(IniInt){}; NewInt& operator++() { cout<<"prefix"<<endl; this->RootI 阅读全文
posted @ 2017-01-16 22:43 Przz 阅读(302) 评论(0) 推荐(0) 编辑