std::basic_streambuf::sputc
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> int_type sputc( char_type ch ); |
||
Écrit un caractère à la séquence de sortie .
Original:
Writes one character to the output sequence.
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.
Si la position d'écriture séquence de sortie n'est pas disponible, retourne
overflow(ch). Sinon retourne traits::to_int_type(ch) .Original:
If the output sequence write position is not available, returns
overflow(ch). Otherwise returns traits::to_int_type(ch).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.
Paramètres
| ch | - | caractère à écrire
Original: character to write The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
Le caractère écrit sur le succès ou l'échec
traits::eof() sur .Original:
The written character on success or
traits::eof() on failure.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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
Invoque xsputn()Original: invokes xsputn()The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre publique) | |