weak_ptr::element_type

元素的类型。

typedef Ty element_type;

备注

类型是的同义词。Ty模板参数

示例

 

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

要求

页眉: <内存>

命名空间: std

请参见

参考

weak_ptr 类