命名空间
变体
操作

std::shared_ptr<T>::operator bool

来自 cppreference.com
< cpp‎ | memory‎ | shared ptr
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三向比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
动态内存管理
未初始化内存算法
受限未初始化内存算法
分配器
垃圾回收支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)



 
 
explicit operator bool() const noexcept;

检查 *this 是否存储非空指针,即是否 get() != nullptr.

内容

[编辑] 参数

(无)

[编辑] 返回值

如果 *this 存储指针,则为 true,否则为 false

[编辑] 备注

空的 shared_ptr(其中 use_count() == 0)可能会存储一个非空指针,可以通过 get() 访问,例如,如果它是使用别名构造函数创建的。

[编辑] 示例

#include <iostream>
#include <memory>
 
void report(std::shared_ptr<int> ptr) 
{
    if (ptr)
        std::cout << "*ptr=" << *ptr << "\n";
    else
        std::cout << "ptr is not a valid pointer.\n";
}
 
int main()
{
    std::shared_ptr<int> ptr;
    report(ptr);
 
    ptr = std::make_shared<int>(7);
    report(ptr);
}

输出

ptr is not a valid pointer.
*ptr=7

[编辑] 参见

返回存储的指针
(公共成员函数) [编辑]