std::reference_wrapper::reference_wrapper
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> 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) | |
Constrói um invólucro nova referência.
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)
Armazena uma referência para
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)
Construção de um objetos temporários não é 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)
Copie construtor. Armazena uma referência para
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 | - | um objeto para quebrar
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 | - | outro invólucro de referência
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. |