operator<< (<memory>)
shared_ptr 插件。
template<class Elem, class Tr, class Ty>
std::basic_ostream<Elem, Tr>& operator<<(std::basic_ostream<Elem, Tr>& out,
shared_ptr<Ty>& sp);
参数
Elem
流元素的类型。Tr
流元素类型字符。Ty
由共享指针控制的类型。out
输出流。sp
共享指针。
备注
模板函数返回 out << sp.get()。
示例
// std_tr1__memory__operator_sl.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0(new int(5));
std::cout << "sp0 == " << sp0 << " (varies)" << std::endl;
return (0);
}
要求
页眉: <内存>
命名空间: std