积少成多

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2016年9月28日

摘要: #include #include class Woman; class Man{ private: std::weak_ptr _wife; //std::shared_ptr _wife; public: void setWife(std::shared_ptr &woman){ _wife = woman; } v... 阅读全文
posted @ 2016-09-28 15:11 x7b5g 阅读(793) 评论(0) 推荐(0) 编辑

摘要: #include <iostream> using namespace std; class Singleton { public: static Singleton *GetInstance() { if (m_Instance == NULL) { m_Instance = new Single 阅读全文
posted @ 2016-09-28 10:03 x7b5g 阅读(343) 评论(0) 推荐(0) 编辑