std::basic_ios::tie
提供: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) | |
縛らストリームを管理します。縛らストリームは、ストリームバッファ(
1) rdbuf())によって制御されるシーケンスと同期化された出力ストリームです、flush()は*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.
現在縛られたストリームを返します。全く縛らストリームが存在しない場合は、NULLが返されます.
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.
strに現在関連付けられてストリームを設定します。操作の前に縛られたストリームを返します。全く縛らストリームが存在しない場合は、NULLが返されます.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.
目次 |
[編集] パラメータ
| str | - | 縛らストリームとして設定する出力ストリーム
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. |
[編集] 値を返します
縛らストリーム、またはNULL全く縛らストリームが存在しなかった場合..
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.
[編集] 例外
(なし)
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.
[編集] ノート
デフォルトでは、標準ストリーム
cin、cerrとclogcoutに関連付けられています。同様に、彼らの幅広い対応wcin、wcerrとwclogwcoutに関連付けられています.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.
[編集] 例
| This section is incomplete Reason: no example |