次の方法で共有


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 クラス