std::reference_wrapper::reference_wrapper
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
reference_wrapper( T& x ); |
(desde C++11) | |
reference_wrapper( T&& x ) = delete; |
(desde C++11) | |
reference_wrapper( const reference_wrapper<T>& other ); |
(desde C++11) | |
Construye un nuevo envoltorio de referencia .
Original:
Constructs a new reference wrapper.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Almacena una referencia a
x .Original:
Stores a reference to
x.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Construcción de un objeto temporal no está permitido .
Original:
Construction from a temporary objects is not allowed.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
Copiar constructor. Almacena una referencia a
other.get() .Original:
Copy constructor. Stores a reference to
other.get().The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| x | - | un objeto a envolver
Original: an object to wrap The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | otra envoltura de referencia
Original: another reference wrapper The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |