std::basic_istringstream::str
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> std::basic_string<CharT,Traits,Allocator> str() const; |
(1) | |
void str(const std::basic_string<CharT,Traits,Allocator>& new_str); |
(2) | |
Gerencia o conteúdo do objeto de cadeia subjacente.
Original:
Manages the contents of the underlying string object.
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)
Retorna uma cópia da seqüência subjacente, como se chamando
rdbuf()->str().Original:
Returns a copy of the underlying string as if by calling
rdbuf()->str().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)
Substitui o conteúdo da seqüência subjacente, como se chamando
rdbuf()->str(new_str).Original:
Replaces the contents of the underlying string as if by calling
rdbuf()->str(new_str).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.