std::match_results::operator=
Da cppreference.com.
< cpp | regex | match results
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <regex>
|
||
match_results& operator=( const match_results& other ); |
(1) | (dal C++11) |
match_results& operator=( match_results&& other ); |
(2) | (dal C++11) |
Assegna il contenuto.
Original:
Assigns the contents.
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) Copy assignment operator. Assigns the contents of
other
. 2) Move assignment operator. Assigns the contents of
other
using move semantics. other
is in valid, but unspecified state after the operation. [modifica] Parametri
other | - | another match results object |
[modifica] Valore di ritorno
*this.
[modifica] Eccezioni
1)
(Nessuno)
Original:
(none)
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)