What is the exact use of flush()? What is the difference between stream and buffer? Why do we need buffer?
|
The advantage of buffering is efficiency. It is generally faster to write a block of 4096 bytes one time to a file than to write, say, one byte 4096 times. The disadvantage of buffering is that you miss out on the feedback. Output to a handle can remain in memory until enough bytes are written to make it worthwhile to write to the file handle. One part of your program may write some data to a file, but a different part of the program or a different program can't access that data until the first part of your program copies the data from memory to disk. Depending on how quickly data is being written to that file, this can take an arbitrarily long time. When you call |
|||
|
|
|
|
|||
|
|
|
The data sometimes gets cached before it's actually written to disk (in a buffer) flush causes what's in the buffer to be written to disk. |
|||
|
|