共用方式為


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 Class

shared_ptr::operator*

shared_ptr::operator->