다음을 통해 공유


shared_ptr::~shared_ptr

소멸 된 shared_ptr.

~shared_ptr();

설명

소멸자 감소는 리소스에 대 한 참조 횟수가 현재 소유한 *this.참조 횟수가 0으로 떨어지면 리소스가 해제 됩니다.

예제

 

// std_tr1__memory__shared_ptr_destroy.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 == " << *sp1 << std::endl; 
    std::cout << "use count == " << sp1.use_count() << std::endl; 
 
     { 
    std::shared_ptr<int> sp2(sp1); 
    std::cout << "*sp2 == " << *sp2 << std::endl; 
    std::cout << "use count == " << sp1.use_count() << std::endl; 
     } 
 
// check use count after sp2 is destroyed 
    std::cout << "use count == " << sp1.use_count() << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

shared_ptr Class