Espacios de nombres
Variantes

std::basic_iostream::~basic_iostream

De cppreference.com
 
 
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_iostream
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.
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.
 
virtual ~basic_iostream();
Destruye la entrada / flujo de salida .
Original:
Destructs the input/output stream.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Notas

Este destructor no lleva a cabo ninguna operación en el búfer de la secuencia subyacente (rdbuf()): los destructores de las corrientes derivadas como std::basic_fstream y std::basic_stringstream son responsables de llamar a los destructores de los buffers de stream .
Original:
This destructor does not perform any operation on the underlying stream buffer (rdbuf()): the destructors of the derived streams such as std::basic_fstream and std::basic_stringstream are responsible for calling the destructors of the stream buffers.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.