摘要: 12.优先使用前置操作符 #include <iostream> using namespace std; class A { private: int num; public: A operator++(); //前置++ A operator++(int); //后置++ }; A A::ope 阅读全文
posted @ 2019-07-28 17:37 怎么可以吃突突 阅读(100) 评论(0) 推荐(0) 编辑