Condividi tramite


shared_ptr::operator boolean-type

Verifica se una risorsa personalizzata esiste.

operator boolean-type() const;

Note

L'operatore restituisce un valore di tipo che è convertibile in bool.Il risultato della conversione a bool è true quando get() != 0in caso contrario, false.

Esempio

 

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

Requisiti

intestazione: <memory>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

shared_ptr Class

shared_ptr::get