From http://www.cplusplus.com/reference/ios/ios/rdbuf/:
Some derived stream classes (such as stringstream and fstream) maintain their own internal stream buffer, to which they are associated on construction. Calling this function to change the associated stream buffer shall have no effect on that internal stream buffer: the stream will have an associated stream buffer which is different from its internal stream buffer (although input/output operations on streams always use the associated stream buffer, as returned by this member function).
And on http://www.cplusplus.com/reference/fstream/ifstream/rdbuf/:
Returns a pointer to the internal filebuf object.
Notice however, that this is not necessarily the same as the currently associated stream buffer (returned by ios::rdbuf).
So what is the internal buffer for if it's not used for input and output operations? And if it means that these two lines could return two different objects, why could this be useful?
std::stringstream ss;
ss.rdbuf(); // (1) returns "internal" stream buffer?
static_cast<std::ios&>(ss).rdbuf(); // (2) returns "associated" stream buffer?
The internal buffer is used for input and output operations up until the point of calling rdbuf
with some other argument. Then it just sits there.
You can always re-enable it by calling
stream.basic_ios::rdbuf(stream.rdbuf());
Note that the internal buffer for e.g. std::fstream
is always an std::filebuf
object owned and managed by the stream object, while the associated buffer can be any streambuf
derived object. The stream only stores a base class pointer to it and doesn't manage its lifetime.
Also note that the term "internal buffer" is not used by the standard. The standard uses a bit different terminology:
The class
basic_ifstream<charT, traits>
supports reading from named files. It uses abasic_filebuf<charT, traits>
object to control the associated sequence. For the sake of exposition, the maintained data is presented here as:—
sb
, thefilebuf
object.
The "maintained data" above is what cplusplus.com calls "the internal stream buffer".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With