다음을 통해 공유


reference_wrapper::type

래핑된 참조의 형식입니다.

typedef Ty type;

설명

Typedef는 템플릿 인수 동일 Ty.

예제

 

// std_tr1__functional__reference_wrapper_type.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    int i = 1; 
    typedef std::reference_wrapper<int> Mywrapper; 
    Mywrapper rwi(i); 
    Mywrapper::type val = rwi.get(); 
 
    std::cout << "i = " << i << std::endl; 
    std::cout << "rwi = " << val << std::endl; 
 
    return (0); 
    } 
 
  

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

reference_wrapper Class

reference_wrapper::result_type