当前位置:   article > 正文

std::shared_from_this注意事项:exception bad_weak_ptr

std::shared_from_this注意事项:exception bad_weak_ptr

1.不可以在构造函数中调用shared_from_this()
因为它的实现是:

    _LIBCPP_INLINE_VISIBILITY
    shared_ptr<_Tp> shared_from_this()
        {return shared_ptr<_Tp>(__weak_this_);}
  • 1
  • 2
  • 3

也就是它依赖的__weak_this_此时还未创建完成。

2.一定要public继承

class MyType : public std::enable_shared_from_this<MyType> {
}
  • 1
  • 2

macOS平台的实现为例:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk/usr/include/c++/v1/__memory/shared_ptr.h

shared_ptr的构造过程,需要调用__enable_weak_this()初始化__weak_this_
__enable_weak_this的实现,会根据类型的可见性,利用模板特化了不同的实现。

正确的实现:

    template <class _Yp, class _OrigPtr, class = __enable_if_t<
        is_convertible<_OrigPtr*, const enable_shared_from_this<_Yp>*>::value
    > >
    _LIBCPP_HIDE_FROM_ABI
    void __enable_weak_this(const enable_shared_from_this<_Yp>* __e, _OrigPtr* __ptr) _NOEXCEPT
    {
        typedef __remove_cv_t<_Yp> _RawYp;
        if (__e && __e->__weak_this_.expired())
        {
            __e->__weak_this_ = shared_ptr<_RawYp>(*this,
                const_cast<_RawYp*>(static_cast<const _Yp*>(__ptr)));
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

空实现:

    _LIBCPP_HIDE_FROM_ABI void __enable_weak_this(...) _NOEXCEPT { }
  • 1

可见性不符合时,无法正确创建出__weak_this_。此时使用std::enable_shared_from_this<T>便失去了意义。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/206208
推荐阅读
相关标签
  

闽ICP备14008679号