Espacios de nombres
Variantes
Acciones

std::basic_ios<CharT,Traits>::rdbuf

De cppreference.com
< cpp‎ | io‎ | basic ios
Revisión a fecha de 14:09 25 oct 2012; P12 (Discusión | contribuciones)

 
 
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<CharT,Traits>* rdbuf() const;
(1)
std::basic_streambuf<CharT,Traits>* rdbuf( std::basic_streambuf<CharT,Traits>* sb );
(2)
Administra la memoria de flujo asociada .
Original:
Manages the associated stream buffer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Devuelve el búfer de la secuencia asociada. Si no hay memoria de flujo asociada, vuelve NULL .
Original:
Returns the associated stream buffer. If there is no associated stream buffer, returns NULL.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Establece el búfer de la secuencia asociada a sb. El estado de error se borra sb llamando sb.clear(). Devuelve el búfer de la secuencia asociada antes de la operación. Si no hay memoria de flujo asociada, vuelve NULL .
Original:
Sets the associated stream buffer to sb. The error state of sb is cleared by calling sb.clear(). Returns the associated stream buffer before the operation. If there is no associated stream buffer, returns NULL.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

Parámetros

sb -
búfer de la secuencia de asociar a
Original:
stream buffer to associate to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

El búfer de la secuencia asociada, o NULL si no había búfer de la secuencia asociada .
Original:
The associated stream buffer, or NULL if there was no associated stream buffer.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Excepciones

(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.

Ejemplo

Ver también

Plantilla:cpp/io/basic ios/dcl list set rdbuf