다음을 통해 공유


shared_ptr::operator boolean-type

소유는 리소스가 있는 경우 테스트 합니다.

operator boolean-type() const;

설명

변환할 수 있는 형식의 값을 반환 하는 연산자 bool.변환의 결과 bool 는 true 때 get() != 0, 그렇지 않으면 false.

예제

 

// std_tr1__memory__shared_ptr_operator_bool.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
int main() 
    { 
    std::shared_ptr<int> sp0; 
    std::shared_ptr<int> sp1(new int(5)); 
 
    std::cout << "(bool)sp0 == " << std::boolalpha 
        << (bool)sp0 << std::endl; 
    std::cout << "(bool)sp1 == " << std::boolalpha 
        << (bool)sp1 << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

shared_ptr Class

shared_ptr::get