다음을 통해 공유


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