Espacios de nombres
Variantes
Acciones

std::basic_streambuf<CharT,Traits>::snextc

De cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
Biblioteca de E/S
Manipuladores de E/S
E/S estilo C
Búferes
(en desuso en C++98)
Flujos
Abstracciones
E/S de archivos
E/S de cadenas
E/S de arrays
(en desuso en C++98)
(en desuso en C++98)
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
std::basic_streambuf
Las funciones públicas miembros
Original:
Public member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Locales
Original:
Locales
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Posicionamiento
Original:
Positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Obtenga zona
Original:
Get area
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_streambuf::snextc
Ponga zona
Original:
Put area
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Dos puntos
Original:
Putback
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Protegido funciones miembro
Original:
Protected member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Locales
Original:
Locales
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Posicionamiento
Original:
Positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Obtenga zona
Original:
Get area
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Ponga zona
Original:
Put area
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Dos puntos
Original:
Putback
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
int_type snextc();
Avanza el orden de entrada de un personaje y lee un carácter .
Original:
Advances the input sequence by one character and reads one character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La función llama sbumpc() para avanzar en la secuencia de entrada. Si la función devuelve traits::eof() lo que significa que la secuencia de entrada se ha agotado y uflow() no podría recuperar más datos, se devuelve traits::eof(). De lo contrario sgetc() se llama con el fin de leer el carácter .
Original:
The function calls sbumpc() to advance the input sequence. If that function returns traits::eof() meaning that input sequence has been exhausted and uflow() could not retrieve more data, traits::eof() is returned. Otherwise sgetc() is called in order to read the character.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] Parámetros

(Ninguno)
Original:
(none)
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 valor del carácter siguiente. Si la secuencia de entrada se ha agotado, se devuelve traits::eof() .
Original:
The value of the next character. If the input sequence has been exhausted, traits::eof() is returned.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo

[editar] Ver también

Lee un carácter de la secuencia de entrada sin hacer avanzar la secuencia.
(función miembro pública) [editar]
(eliminado en C++17)
Lee un carácter de la secuencia de entrada y hace avanzar la secuencia.
(función miembro pública) [editar]