std::basic_ios::move
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| protected: void move( basic_ios& other ); |
(C++11およびそれ以降) | |
| protected: void move( basic_ios&& other ); |
(C++11およびそれ以降) | |
関連する
otherを除き、rdbufのものと現在の状態を置き換えます。 other呼び出しの後に有効ですが、特定されていない状態になっています。この関数を呼び出した後、rdbuf()戻りNULL、とother.rdbuf()呼び出しの前と同じ値を返します。.Original:
Replaces the current state with that of
other, except for the associated rdbuf. other is in valid, but unspecified state after the call. After the call to this function, rdbuf() returns NULL, and other.rdbuf() returns the same value as before the call.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.
このメンバ関数は、保護されています:それは、順番に、どのように正確に知っているようなstd::basic_ostreamなどのさらなる派生ストリームクラスのパブリックムーブコンストラクタ、によって呼び出されstd::basic_istreamとstd::basic_ofstream、派生ストリームクラスの保護された動きのコンストラクタによって呼び出されます関連付けられたストリームバッファを移動.
Original:
This member function is protected: it is called by the protected move constructors of the derived stream classes std::basic_ostream and std::basic_istream, which, in turn, are called by the public move constructors of the further derived stream classes such as std::basic_ofstream, which know how to correctly move the associated streambuffer.
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 | - | から状態を転送する
basic_iosオブジェクトOriginal: the basic_ios object to transfer the state fromThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
(なし)
[編集] 参照
| std::basic_iosを除く他の rdbufとスワップOriginal: swaps with another std::basic_ios except for rdbufThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (protectedメンバー関数) | |

