gpt4 book ai didi

c++ - 将 boost::shared_ptr 初始化为 NULL

转载 作者:IT老高 更新时间:2023-10-28 22:32:32 27 4
gpt4 key购买 nike

我可以用 NULL 值初始化 shared_ptr 吗?

boost::shared_ptr<Type> s_obj(NULL);

如果没有,那怎么办?

最佳答案

默认构造会为您执行此操作:

template<class T> class shared_ptr
{
public:

explicit shared_ptr(T * p = 0): px(p)
{
//Snip
}

//...

private:

T * px; // contained pointer
count_type * pn; // ptr to reference counter
};

关于c++ - 将 boost::shared_ptr 初始化为 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16229401/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com