gpt4 book ai didi

c++ - boost Shared_pointer NULL

转载 作者:IT老高 更新时间:2023-10-28 12:50:00 28 4
gpt4 key购买 nike

我使用 reset() 作为我的 shared_pointer 的默认值(相当于 NULL)。

但是如何检查 shared_pointer 是否为 NULL

这会返回正确的值吗?

boost::shared_ptr<Blah> blah;
blah.reset()
if (blah == NULL)
{
//Does this check if the object was reset() ?
}

最佳答案

用途:

if (!blah)
{
//This checks if the object was reset() or never initialized
}

关于c++ - boost Shared_pointer NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5610527/

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