Can someone write some sample code to explain this concept? I know what a buffered stream is used for, but I also would like to know how to implement that.
Thanks in advance!
|
Can someone write some sample code to explain this concept? I know what a buffered stream is used for, but I also would like to know how to implement that. Thanks in advance!
| |||||
feedback
|
|
You can look into your platform's implementation, the C++ standard or "Standard C++ IOstreams and Locales" by Angelika Langer and Klaus Kreft. Be prepared for quite a learning curve. Streams are old and a complicated matter. (Francis Glassborow: "I have very few doubts that I/O libraries are amongst the most difficult aspects of any language.") | ||||
|
feedback
|
|
Veeeery schematically, for an "input" stream:
That way, data is read from disk in chunks of the size of the buffer, and most calls to "get()" don't have to end up in calls to the OS, as they can simply return a byte from the buffer. | |||
|
feedback
|
|
Take a look at the STL implementation: And: | |||
|
feedback
|