std::basic_iostream::~basic_iostream
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í. |
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.
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.
You can help to correct and verify the translation. Click here for instructions.