Compartilhar via


reference_wrapper::type

O tipo de referência ajustado.

typedef Ty type;

Comentários

O typedef é um sinônimo para o argumento Tydo modelo.

Exemplo

 

// 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); 
    } 
 
  

Requisitos

Cabeçalho: <funcional>

Namespace: std

Consulte também

Referência

Classe reference_wrapper

reference_wrapper::result_type