operator<< (<memory>)
shared_ptr TAB 鍵。
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);
}
需求
標頭: <memory>
命名空間: std