次の方法で共有


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

参照

関連項目

shared_ptr クラス

shared_ptr::operator*

shared_ptr::operator->