std::basic_ios::tie
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| std::basic_ostream<CharT,Traits>* tie() const; |
(1) | |
| std::basic_ostream<CharT,Traits>* tie( std::basic_ostream<CharT,Traits>* str ); |
(2) | |
Administra el flujo de atado. Una corriente de atado es una secuencia de salida que está sincronizado con la secuencia de control de la memoria de flujo (
1) rdbuf()), es decir, flush() se llama en la corriente de atado antes de cualquier operación de entrada / salida en *this .Original:
Manages the tied stream. A tied stream is a output stream which is synchronized with the sequence controlled by the stream buffer (
rdbuf()), that is, flush() is called on the tied stream before any input/output operation on *this.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.
Devuelve la secuencia actual atadas. Si no hay corriente de atado, NULL se devuelve .
2) Original:
Returns the current tied stream. If there is no tied stream, NULL is returned.
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.
Establece la secuencia actual vinculado a
str. Devuelve la secuencia de atado antes de la operación. Si no hay corriente de atado, NULL se devuelve .Original:
Sets the current tied stream to
str. Returns the tied stream before the operation. If there is no tied stream, NULL is returned.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.
Contenido |
[editar] Parámetros
| str | - | un flujo de salida para ajustar el flujo de atado
Original: an output stream to set as the tied stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
La corriente de atado, o NULL si no hay corriente atado .
Original:
The tied stream, or NULL if there was no tied 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.
[editar] 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] Notas
Por defecto, los flujos estándares
cin, cerr y clog están vinculados a cout. Del mismo modo, sus homólogos de todo el wcin, wcerr y wclog están vinculados a wcout .Original:
By default, the standard streams
cin, cerr and clog are tied to cout. Similarly, their wide counterparts wcin, wcerr and wclog are tied to wcout.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] Ejemplo
| This section is incomplete Reason: no example |