- memory[meta header]
- std[meta namespace]
- function template[meta id-type]
- cpp11[meta cpp]
namespace std {
template <class E, class T, class Y>
std::basic_ostream<E, T>& operator<<(std::basic_ostream<E, T>& os, const shared_ptr<Y>& p);
}
ストリームに出力する。
ポインタ値を出力する。
os << p.get();
- get()[link get.md]
os
投げない
#include <iostream>
#include <memory>
int main()
{
std::shared_ptr<int> p(new int(3));
std::cout << p << std::endl;
}
0x7f9400d12480
- C++11
- Clang: 3.0 [mark verified]
- GCC: 4.3.6 [mark verified]
- ICC: ??
- Visual C++: 2008 (TR1) [mark verified], 2010 [mark verified], 2012 [mark verified], 2013 [mark verified]