std::basic_ios::basic_ios
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> basic_ios(); |
(1) | |
explicit basic_ios( std::basic_streambuf<CharT,Traits>* sb ); |
(2) | |
Constrói novo objeto
basic_ios. Original:
Constructs new
basic_ios 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)
Construtor padrão. O estado interno não é inicializado.
init() deve ser chamado antes da primeira utilização do objeto ou antes destruidor, caso contrário, o comportamento é indefinido.Original:
Default constructor. The internal state is not initialized.
init() must be called before the first use of the object or before destructor, otherwise the behavior is undefined.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)
Inicializa o estado interno chamando
init(sb). O buffer de fluxo associado é definido para sb. Original:
Initializes the internal state by calling
init(sb). The associated stream buffer is set to sb. 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.
Parâmetros
| sb | - | buffer de fluxo para associar
Original: stream buffer to associate to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |