std::strstream
De cppreference.com
![]() |
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í. |
Definido en el archivo de encabezado <strstream>
|
||
class strstream : public std::iostream |
(en desuso) | |
El
strstream
clase implementa operaciones de entrada y de salida de copia de seguridad en arreglos arroyos. En esencia, ajusta una matriz de la E / S implementación del dispositivo (std::strstreambuf) en la interfaz de alto nivel de std::basic_iostream . Original:
The class
strstream
implements input and output operations on array-backed streams. It essentially wraps a raw array I/O device implementation (std::strstreambuf) into the higher-level interface of std::basic_iostream. 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.
La implementación típica de
strstream
dispone de un único no derivados miembro de datos: un objeto de tipo std::strstreambuf .Original:
The typical implementation of
strstream
holds only one non-derived data member: an object of type std::strstreambuf.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] Las funciones miembro
construye una strstream, opcionalmente asignar la memoria intermedia Original: constructs an strstream, optionally allocating the buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) | |
[virtual] |
destructs un strstream, opcionalmente desasignación de la memoria intermedia Original: destructs an strstream, optionally deallocating the buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro virtual pública) |
obtiene un puntero a la strstreambuf asociado Original: obtains a pointer to the associated strstreambuf The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) | |
accede a la memoria intermedia de salida Original: accesses the output buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) | |
deshabilita / habilita la reasignación automática Original: disables/enables automatic reallocation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) | |
obtiene el número de caracteres escritos Original: obtains the number of characters written The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública) |
Heredado de std::basic_istream
Member functions
Original: Formatted input The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
extraer datos con formato (función miembro pública de std::basic_istream )
| |
Original: Unformatted input The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
Extrae caracteres. (función miembro pública de std::basic_istream )
| |
lee el siguiente carácter sin extraerlo Original: reads the next character without extracting it The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
unextracts un carácter Original: unextracts a character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
pone personaje en la corriente de entrada Original: puts character into input stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
Extrae caracteres hasta que se encuentra el carácter dado. (función miembro pública de std::basic_istream )
| |
Extrae y descarta caracteres hasta encontrar el carácter dado. (función miembro pública de std::basic_istream )
| |
extrae los bloques de caracteres Original: extracts blocks of characters The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
extrae los bloques que ya están disponibles los personajes Original: extracts already available blocks of characters The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
Devuelve el número de caracteres extraídos por última operación de entrada sin formato Original: returns number of characters extracted by last unformatted input operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
Original: Positioning The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
devuelve el indicador de posición de entrada Original: returns the input position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
| |
Establece el indicador de la posición de entrada. (función miembro pública de std::basic_istream )
| |
Original: Miscellaneous The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
sincroniza con el dispositivo de almacenamiento subyacente Original: synchronizes with the underlying storage device The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función miembro pública de std::basic_istream )
|
Member classes
implements basic logic for preparation of the stream for input operations (clase miembro pública de std::basic_istream )
|