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