如果我想使用 std::shared_ptr,要包含哪个标头?
在 c++0x 中,shared_ptr 将从 tr1 移至 std。那么要包含哪个标头才能获得它?
我正在使用 g++ 4.5 (ubuntu 10.10)
In c++0x shared_ptr will be moved from tr1 into std. So which header to include to get it?
I am using g++ 4.5 (ubuntu 10.10)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您现在可以在
中找到它。You'll find it in
<memory>
now.