摘要: #includeclass A{ private: const A& operator=(const A&);};int main(){ A a; A b = a;//ok,实际上是A b(a),即调用拷贝构造函数 A c; c = a;//error,因为'='已被声明为私有 r... 阅读全文
posted @ 2014-09-02 20:03 米其林轮船 阅读(159) 评论(0) 推荐(0) 编辑
摘要: #includeclass CSingle2{public: static CSingle2* getInstance(); void setKey(int k); void printKey(); ~CSingle2();private: CSingle2(); ... 阅读全文
posted @ 2014-09-02 19:17 米其林轮船 阅读(167) 评论(0) 推荐(0) 编辑