Compartir a través de


shared_ptr::get

Obtiene la dirección de recursos propio.

Ty *get() const;

Comentarios

La función miembro devuelve la dirección de recursos propio.Si el objeto no posee un recurso devuelve 0.

Ejemplo

 

// std_tr1__memory__shared_ptr_get.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 << "sp0.get() == 0 == " << std::boolalpha 
        << (sp0.get() == 0) << std::endl; 
    std::cout << "*sp1.get() == " << *sp1.get() << std::endl; 
 
    return (0); 
    } 
 
  

Requisitos

encabezado: <memoria>

espacio de nombres: std

Vea también

Referencia

shared_ptr Class

shared_ptr::operator*

shared_ptr::operator->