shared_ptr::get
获取特定资源地址。
Ty *get() const;
备注
成员函数返回特定资源的地址。 如果对象会拥有资源则返回0。
示例
// std_tr1__memory__shared_ptr_get.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
int main()
{
std::shared_ptr<int> sp0;
std::shared_ptr<int> sp1(new int(5));
std::cout << "sp0.get() == 0 == " << std::boolalpha
<< (sp0.get() == 0) << std::endl;
std::cout << "*sp1.get() == " << *sp1.get() << std::endl;
return (0);
}
要求
标头: <memory>
命名空间: std