std::basic_ios::basic_ios — cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(1) | |
|
|
(2) | |
Construit nouvelle basic_ios objet .
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.
1)
Constructeur par défaut. L'état interne n'est pas initialisé. init() doit être appelée avant la première utilisation de l'objet ou destructeur avant, sinon le comportement est indéfini .
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.
2)
Initialise l'état interne en appelant init(sb). Le tampon de flux associé est mis à 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.
Paramètres
| sb | - | tampon de flux d'associer à Original: stream buffer to associate to The text has been machine-translated via Google Translate. |