std::unique_ptr::operator bool
性病::独特[医]PTR::操作员bool
explicit operator bool() const; | | (since C++11) |
---|
检查是否*this
拥有一个对象,即get() != nullptr
...
参数
%280%29
返回值
true
如果*this
拥有一件物品,false
否则。
例外
noexcept
规格:
noexcept
例
二次
#include <iostream>
#include <memory>
int main()
{
std::unique_ptr<int> ptr(new int(42)
if (ptr) std::cout << "before reset, ptr is: " << *ptr << '\n';
ptr.reset(
if (ptr) std::cout << "after reset, ptr is: " << *ptr << '\n';
}
二次
产出:
二次
before reset, ptr is: 42
二次
另见
get | returns a pointer to the managed object (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。
http://en.cppreference.com/w/cpp/Memory/UNIQUE[医]PTR/算子[医]布尔