std::basic_ios::copyfmt
提供: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. |
| basic_ios& copyfmt(const basic_ios& other); |
||
ストリーム
1) otherから書式化フラグをコピーします。これは、次の順序で行われますOriginal:
Copies the formatting flags from stream
other. This is done in the following sequence: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.
パラメータとして渡しregister_callback()erase_eventによって登録されたコールバックを呼び出します
2) Original:
Calls callbacks, registered by register_callback() passing erase_event as parameter
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.
otherから*thisに書式情報をコピーします。内部データ配列もコピーされます。 rdstate()変更されないまま.Original:
Copies the formatting information from
other to *this. Internal data array is also copied. rdstate() is left unchanged.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.
パラメータとして渡しregister_callback()copyfmt_eventによって登録されたコールバックを呼び出します
4) Original:
Calls callbacks, registered by register_callback() passing copyfmt_event as parameter
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.
otherから*thisに例外マスクをコピー.Original:
Copies the exception mask from
other to *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.
現在のフラグを設定するだけでなく、ストリーム·エラー·フラグ
stateを設定します。本質的にclear(rdstate() | state)呼び出します。例外をスローすることがあります.Original:
Sets the stream error flags
state in addition to currently set flags. Essentially calls clear(rdstate() | state). May throw an exception.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.
[編集] パラメータ
| other | - | ソースとして使用する別の流れ
Original: another stream to use as source The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
*this
[編集] 例
| This section is incomplete Reason: no example |