Espacios de nombres
Variantes
Acciones

std::strstream

De cppreference.com
< cpp‎ | io
 
 
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)
strstream
(en desuso en C++98)
Salida sincronizada
Tipos
Interfaz de categoría de error
(C++11)
 
std::strstream
Las funciones miembro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
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.
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.

Contenido

[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

Entrada con formato
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) [editar]
Entrada sin formato
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) [editar]
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) [editar]
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) [editar]
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) [editar]
Extrae caracteres hasta que se encuentra el carácter dado.
(función miembro pública de std::basic_istream) [editar]
Extrae y descarta caracteres hasta encontrar el carácter dado.
(función miembro pública de std::basic_istream) [editar]
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) [editar]
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) [editar]
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) [editar]
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.
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) [editar]
Establece el indicador de la posición de entrada.
(función miembro pública de std::basic_istream) [editar]
Varios
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) [editar]

Member classes

implements basic logic for preparation of the stream for input operations
(clase miembro pública de std::basic_istream) [editar]


Heredado de std::basic_ostream

Funciones miembro

Salida con formato