共用方式為


shared_ptr::element_type

項目的型別。

typedef Ty element_type;

備註

這個型別是樣板參數的 Ty一個同義資料表。

範例

 

// std_tr1__memory__shared_ptr_element_type.cpp 
// compile with: /EHsc 
#include <memory> 
#include <iostream> 
 
int main() 
    { 
    std::shared_ptr<int> sp0(new int(5)); 
    std::shared_ptr<int>::element_type val = *sp0; 
 
    std::cout << "*sp0 == " << val << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <memory>

命名空間: std

請參閱

參考

shared_ptr Class