std::weak_ptr::use_count
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
long use_count() const; |
(C++11 起) | |
返回
shared_ptr
情况下,如果被管理对象,管理对象,或0的股份拥有权已被删除,即*this是空的.原文:
Returns the number of
shared_ptr
instances that share ownership of the managed object, or 0 if the managed object has already been deleted, i.e. *this is empty.目录 |
[编辑] 参数
(无)
[编辑] 返回值
shored_ptr
实例共享的管理对象的所有权.原文:
The number of
shored_ptr
instances sharing the ownership of the managed object.[编辑] 例外
[编辑] 注释
expired()
可能会更快,比use_count()
.原文:
expired()
may be faster than use_count()
.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
检查是否被引用的对象已被删除 原文: checks whether the referenced object was already deleted (公共成员函数) |