shared_ptr::unique
所有されたリソースが一意であるかどうかをテストします。
bool unique() const;
解説
このメンバー関数は、*this によって所有されたリソースを所有する shared_ptr オブジェクトが他に存在しない場合、true を返します。それ以外の場合は false を返します。
使用例
// std_tr1__memory__shared_ptr_unique.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
struct deleter
{
void operator()(int *p)
{
delete p;
}
};
int main()
{
std::shared_ptr<int> sp1(new int(5));
std::cout << "sp1.unique() == " << std::boolalpha
<< sp1.unique() << std::endl;
std::shared_ptr<int> sp2(sp1);
std::cout << "sp1.unique() == " << std::boolalpha
<< sp1.unique() << std::endl;
return (0);
}
必要条件
ヘッダー : <memory>
名前空間: std