Partilhar via


Função ref

Constrói um reference_wrapper de um argumento.

template<class Ty>
    reference_wrapper<Ty> ref(Ty& arg);
template<class Ty>
    reference_wrapper<Ty> ref(reference_wrapper<Ty>& arg);

Comentários

A primeira função retorna reference_wrapper<Ty>(arg.get()). A função segunda retorna reference_wrapper<Ty>(arg).

Exemplo

 

// std_tr1__functional__ref.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    int i = 1; 
 
    std::cout << "i = " << i << std::endl; 
    std::cout << "ref(i) = " << std::tr1::ref(i) << std::endl; 
    std::tr1::ref(i).get() = -1; 
    std::cout << "i = " << i << std::endl; 
 
    return (0); 
    } 
 
i = 1 ref(i) = 1 i = -1

Requisitos

Cabeçalho:<functional>

Namespace: std::tr1

Consulte também

Referência

<functional>TR1)

Função cref

Classe reference_wrapper