使用enable_shared_from_this 說明 The header <boost/enable_shared_from_this.hpp> defines the class template enable_shared_from_this. It is used as a base class that allows a shared_ptr to the current object to be obtained from within a member function. 繼承該類就可以進行基於當前子類進行安全的weap_ptr到shared_ptr的轉換... 代碼實例 以下代碼中Y類繼承enable_shared_from_this,, 從而我們可以直接在函數中調用shared_from_this獲得該對象的shared_ptr class Y: public enable_shared_from_this<Y> { public: shared_ptr<Y> f() { return shared_from_this(); } } int main() { shared_ptr<Y> p(new Y); // 調用f獲得shared_ptr shared_ptr<Y> q = p->f(); assert(p == q); assert(!(p < q || q < p)); // p and q must share ownership } 該類的實現 template<class T> class enable_shared_from_this { protected: enable_shared_from_this() { } enable_shared_from_this(enable_shared_from_this const &) { } enable_shared_from_this & operator=(enable_shared_from_this const &) { return *this; } ~enable_shared_from_this() { } public: shared_ptr<T> shared_from_this() { shared_ptr<T> p(_internal_weak_this); BOOST_ASSERT(p.get() == this); return p; } shared_ptr<T const> shared_from_this() const { shared_ptr<T const> p(_internal_weak_this); BOOST_ASSERT(p.get() == this); return p; } // Note: No, you don't need to initialize _internal_weak_this // // Please read the documentation, not the code // // http://www.boost.org/libs/smart_ptr/enable_shared_from_this.html typedef T _internal_element_type; // for bcc 5.5.1 mutable weak_ptr<_internal_element_type> _internal_weak_this; }; 結論 這個實用類提供了簡單的shared_ptr轉換和安全的weak式驗證... 這樣通過繼承就可以使用shared_from_this進行安全當前類weak_ptr到shared_ptr的轉換... 分享到: