模擬實現weak_ptr

weak_ptr是爲了解決shared_ptr的循環引用的問題 weak_ptr沒有引用計數, 只是有一個獲取資源的lock()函數 template <class T> class weakPtr{ public: weakPtr(const sharedPtr& shPtr = nullptr) :_shPtr(&shPtr){ ; } //提供一個lock,來獲取shared
相關文章
相關標籤/搜索