std::shared_ptr::operator<<
来自cppreference.com
< cpp | memory | shared ptr
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template <class T, class U, class V> basic_ostream<U, V>& operator<<(basic_ostream<U, V>& os, const shared_ptr<T>& ptr); |
||
插入一个
shared_ptr<T>
成std::basic_ostream.原文:
Inserts a
shared_ptr<T>
into a std::basic_ostream.相当于
os << ptr.get()
.目录 |
[编辑] 参数
os | - | 一个std::basic_ostream插入
ptr 原文: a std::basic_ostream to insert ptr into |
ptr | - | 的数据被插入到
os |
[编辑] 返回值
os
[编辑] 示例
#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
[编辑] 另请参阅
返回一个指针,指向被管理对象 原文: returns a pointer to the managed object (公共成员函数) |