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 ); |
(depuis C++11) | |
reference_wrapper( T&& x ) = delete; |
(depuis C++11) | |
reference_wrapper( const reference_wrapper<T>& other ); |
(depuis C++11) | |
Construit une enveloppe nouvelle référence .
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)
Stocke une référence à
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)
Construction d'un des objets temporaires n'est pas autorisé .
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)
Copiez constructeur. Stocke une référence à
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.
Paramètres
| x | - | un objet à emballer
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 | - | une autre enveloppe de référence
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. |