std::basic_ios::set_rdbuf
提供: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. |
| protected: void set_rdbuf( std::basic_streambuf<CharT,Traits>* sb ); |
||
そのエラー状態をクリアせずに
sbに関連付けられたストリームバッファを設定します。.Original:
Sets the associated stream buffer to
sb without clearing its error state.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_ofstreamまたはstd::basic_istringstream、基底クラスを作成した後の最後の手順として、ストリームバッファを移動した後、派生ストリームのムーブコンストラクタによって呼び出されますだけでなく、最も派生ストリームクラスが正しく移動する方法を知っているストリームバッファが、そのパブリックメンバ関数がそれにアクセスできるようにstd::basic_iosは、ストリームの新しい場所を認識できるようにする必要が.
Original:
This member function is protected: it is called by the move constructors of the derived streams such as std::basic_ofstream or std::basic_istringstream, as the final step after constructing the base class and after moving the stream buffer: only the most derived stream class knows how to correctly move the stream buffer, but std::basic_ios needs to be made aware of the stream's new location so that its public member functions can access it.
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.
目次 |
[編集] パラメータ
| sb | - | ストリームバッファに関連付けることができます
Original: stream buffer to associate to 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.
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.
[編集] 例
| This section is incomplete Reason: no example |
[編集] も参照してください
| 関連付けられているストリームバッファを管理します Original: manages associated stream buffer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |