std::basic_ios::basic_ios
De cppreference.com
<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.
