Compartir a través de


shared_ptr::operator boolean-type

Comprueba si existe un recurso propio.

operator boolean-type() const;

Comentarios

El operador devuelve un valor de un tipo que pueda convertirse a bool.el resultado de la conversión a bool es true cuando get() != 0, si no false.

Ejemplo

 

// 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); 
    } 
 
  

Requisitos

encabezado: <memoria>

espacio de nombres: std

Vea también

Referencia

shared_ptr Class

shared_ptr::get