std::shared_ptr<T>::operator<<
来自 cppreference.com
< cpp | memory | shared ptr
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 ); |
||
将存储在 ptr 中的指针的值插入输出流 os 中。
等效于 os << ptr.get()。
内容 |
[编辑] 参数
os | - | 一个 std::basic_ostream 用于插入 ptr |
ptr | - | 要插入 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'; }
可能的输出
0x6d9028 0x6d9028
[编辑] 参见
返回存储的指针 (公有成员函数) |