std::basic_ios::tie
Da 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) | |
Gerencia o fluxo amarrado. Um fluxo é ligada uma corrente de saída, que é sincronizado com a sequência controlada pelo buffer de fluxo (
1) rdbuf()
), isto é, flush() é chamado no fluxo ligado, antes de qualquer operação de entrada / saída em.. *thisOriginal:
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.
Retorna o fluxo de corrente amarrada. Se não existir um fluxo ligado, NULL é retornado.
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.
Define o fluxo atual amarrado a
str
. Retorna a corrente ligada antes da operação. Se não existir um fluxo ligado, NULL é retornado.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.
Índice |
[editar] Parâmetros
str | - | um fluxo de saída a ser definido como o fluxo amarrado
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
A corrente amarrada, ou NULL se não houvesse fluxo amarrado.
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] Exceções
(Nenhum)
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 padrão, os fluxos padrão
cin
, cerr
e clog
estão vinculados a cout
. Da mesma forma, os seus homólogos de largura wcin
, wcerr
e wclog
estão 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] Exemplo
Esta seção está incompleta Motivo: sem exemplo |