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) | (ya que C + +11) |
| match_results( const match_results& rhs ); |
(2) | (ya que C + +11) |
| match_results( match_results&& rhs ); |
(3) | (ya que C + +11) |
1) Default-constructor. Constructs a match result with no established result state (ready() != true).
2) Copy-constructor. Constructs a match result with a copy of
rhs.3) Move-constructor. Constructs a match result with the contents of
rhs using move semantics. rhs is in valid, but unspecified state after the call.[editar] Parámetros
| a | - | asignador de usar para todas las asignaciones de memoria de este envase
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 | - | another match_result to use as source to initialize the match_result with |
[editar] Excepciones
1-2)
(Ninguno)
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)