shared_ptr::get

Gets address of owned resource.

Ty *get() const;

Remarks

The member function returns the address of the owned resource. If the object does not own a resource it returns 0.

Example

 

// 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); 
    } 
 
sp0.get() == 0 == true
*sp1.get() == 5

Requirements

Header: <memory>

Namespace: std

See Also

Reference

shared_ptr Class

shared_ptr::operator*

shared_ptr::operator->