std::match_results::match_results
De cppreference.com.
< cpp | regex | match results
|
|
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. |
| explicit match_results( const Allocator& a = Allocator() ); |
(1) | (depuis C++11) |
| match_results( const match_results& rhs ); |
(2) | (depuis C++11) |
| match_results( match_results&& rhs ); |
(3) | (depuis C++11) |
1)
Default-constructeur. Construit résultat d'un match sans état de résultat établi (ready() != true) .
Original:
Default-constructor. Constructs a match result with no established result state (ready() != true).
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)
Constructeur de copie. Construit un résultat du match avec une copie de
rhs .Original:
Copy-constructor. Constructs a match result with a copy of
rhs.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)
Move-constructeur. Construit résultat d'un match avec le contenu de
rhs utilisant la sémantique de déplacement. rhs est dans un état valide, mais non précisée après l'appel .Original:
Move-constructor. Constructs a match result with the contents of
rhs using move semantics. rhs is in valid, but unspecified state after the call.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.
[modifier] Paramètres
| a | - | allocateur à utiliser pour toutes les allocations de mémoire de ce conteneur
Original: allocator to use for all memory allocations of this container The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| rhs | - | une autre match_result à utiliser comme source pour initialiser le match_result avec
Original: another match_result to use as source to initialize the match_result with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifier] Exceptions
1-2)
(Aucun)
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.
3)