std::shared_ptr::operator<<

From cppreference.com
< cpp‎ | memory‎ | shared ptr
 
 
 
Dynamic memory management
Uninitialized storage
(C++17)
(deprecated since c++17)
(deprecated since c++17)
(deprecated since c++17)
Garbage collection support
Miscellaneous
(C++11)
(C++11)
C Library
Low level memory management
 
 
template <class T, class U, class V>
    basic_ostream<U, V>& operator<<(basic_ostream<U, V>& os, const shared_ptr<T>& ptr);

Inserts a shared_ptr<T> into a std::basic_ostream.

Equivalent to os << ptr.get().

Parameters

os - a std::basic_ostream to insert ptr into
ptr - the data to be inserted into os

Return value

os

Example

#include <iostream>
#include <memory>
 
class Foo {};
 
int main()
{
    auto sp = std::make_shared<Foo>();
    std::cout << sp << std::endl;
    std::cout << sp.get() << std::endl;
}

Possible output:

0x6d9028
0x6d9028

See also

returns the stored pointer
(public member function)