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. |
| basic_ios(); |
(1) | |
| explicit basic_ios( std::basic_streambuf<CharT,Traits>* sb ); |
(2) | |
Construit nouvelle
1) 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.
You can help to correct and verify the translation. Click here for instructions.
Constructeur par défaut. L'état interne n'est pas initialisé.
2) 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.
You can help to correct and verify the translation. Click here for instructions.
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.
You can help to correct and verify the translation. Click here for instructions.
[modifier] Paramètres
| sb | - | tampon de flux d'associer à
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. |

