名前空間
変種
操作

「cpp/io/basic ios/tie」の版間の差分

提供: cppreference.com
< cpp‎ | io‎ | basic ios
(1版:Translate from the English version)
(r2.7.3) (ロボットによる 追加: de, en, es, fr, it, pt, ru, zh)
36行: 36行:
 
|output=
 
|output=
 
}}
 
}}
 +
 +
 +
 +
 +
 +
 +
 +
 +

2012年11月2日 (金) 21:37時点における版

 
 
入出力ライブラリ
入出力マニピュレータ
Cスタイルの入出力
バッファ
(C++98で非推奨)
ストリーム
抽象
ファイル入出力
文字列入出力
配列入出力
(C++98で非推奨)
(C++98で非推奨)
(C++98で非推奨)
同期化出力
エラーカテゴリインタフェース
(C++11)
 
 
std::basic_ostream<CharT,Traits>* tie() const;
(1)
std::basic_ostream<CharT,Traits>* tie( std::basic_ostream<CharT,Traits>* str );
(2)
縛らストリームを管理します。縛らストリームは、ストリームバッファ(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.
1)
現在縛られたストリームを返します。全く縛らストリームが存在しない場合は、NULLが返されます.
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.
2)
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.

目次

パラメータ

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.

例外

(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

ノート

デフォルトでは、標準ストリームcincerrclogcoutに関連付けられています。同様に、彼らの幅広い対応wcinwcerrwclogwcoutに関連付けられています.
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.