std::basic_streambuf<CharT,Traits>::sputc
De cppreference.com
< cpp | io | basic streambuf
![]() | Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate. La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
int_type sputc( char_type ch ); | ||
Escribe un carácter a la secuencia de salida .
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 secuencia de salida de posición de escritura no está disponible, devuelve overflow(ch). De lo contrario devuelve 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.
Contenido |
[editar]Parámetros
ch | - | carácter a escribir 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. |
[editar]Valor de retorno
El carácter escrito en el éxito o en el fracaso traits::eof() .
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.
[editar]Ejemplo
Esta sección está incompleta Razón: sin ejemplo |
[editar]Ver también
Invoca a xsputn(). (función miembro pública) |