shared_ptr::reset

有关特定资源。

void reset();
template<class Other>
    void reset(Other *ptr;);
template<class Other, class D>
    void reset(Other *ptr, D dtor);
template<class Other, class D, class A>
    void reset(Other *ptr, D dtor, A alloc);

参数

  • Other
    参数指针控件的类型。

  • D
    deleter的类型。

  • ptr
    复制的指针。

  • dtor
    要复制的deleter。

  • A
    分配器的类型。

  • alloc
    要复制的分配器。

备注

运算符所有递减 *this 当前拥有的资源的引用计数并将操作数顺序名为的资源的所有权更改为 *this。 如果引用计数为零,例如释放资源。 如果运算符失败它将 *this 不变。

示例

 

// std_tr1__memory__shared_ptr_reset.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
struct deleter 
    { 
    void operator()(int *p) 
        { 
        delete p; 
        } 
    }; 
 
int main() 
    { 
    std::shared_ptr<int> sp(new int(5)); 
 
    std::cout << "*sp == " << std::boolalpha 
        << *sp << std::endl; 
 
    sp.reset(); 
    std::cout << "(bool)sp == " << std::boolalpha 
        << (bool)sp << std::endl; 
 
    sp.reset(new int(10)); 
    std::cout << "*sp == " << std::boolalpha 
        << *sp << std::endl; 
 
    sp.reset(new int(15), deleter()); 
    std::cout << "*sp == " << std::boolalpha 
        << *sp << std::endl; 
 
    return (0); 
    } 
 
  

要求

标头: <memory>

命名空间: std

请参见

参考

shared_ptr Class

shared_ptr::operator=