template< class T, class U, class V > std::basic_ostream<U, V>& operator<<( std::basic_ostream<U, V>& os, const std::shared_ptr<T>& ptr ); |
Inserts the value of the pointer stored in ptr
into the output stream os
.
Equivalent to os << ptr.get()
.
os | - | a std::basic_ostream to insert ptr into |
ptr | - | the data to be inserted into os |
os
.
#include <iostream> #include <memory> class Foo {}; int main() { auto sp = std::make_shared<Foo>(); std::cout << sp << '\n'; std::cout << sp.get() << '\n'; }
Possible output:
0x6d9028 0x6d9028
returns the stored pointer (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/memory/shared_ptr/operator_ltlt