赞
踩
1.不可以在构造函数中调用shared_from_this()
因为它的实现是:
_LIBCPP_INLINE_VISIBILITY
shared_ptr<_Tp> shared_from_this()
{return shared_ptr<_Tp>(__weak_this_);}
也就是它依赖的__weak_this_
此时还未创建完成。
2.一定要public继承
class MyType : public std::enable_shared_from_this<MyType> {
}
以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)));
}
}
空实现:
_LIBCPP_HIDE_FROM_ABI void __enable_weak_this(...) _NOEXCEPT { }
可见性不符合时,无法正确创建出__weak_this_
。此时使用std::enable_shared_from_this<T>
便失去了意义。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。