std::shared_ptr::operator bool
来自cppreference.com
< cpp | memory | shared ptr
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
operator bool() const; |
||
检查是否*this管理对象,即是否get() != 0.
原文:
Checks if *this manages an object, i.e. whether get() != 0.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
true如果*this管理的对象,false否则.
原文:
true if *this manages an object, false otherwise.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回一个指针,指向被管理对象 原文: returns a pointer to the managed object (公共成员函数) |