C++ file I/O is tougher than C file I/O.
So in C++, creating a new library for file I/O is useful or not? I mean <fstream>
Can anyone please tell are there any benefits in C++ file I/O ?
|
|
Opinion I don't know of any real project that uses C++ streams. They are too slow and difficult to use. There are several newer libraries like FastFormat and the Boost version that claim to be better there was a piece in the last ACCU Overload magazine about them. Personally I have used the c FILE library for the last 15 years or so in C++ and I can see no reason yet to change. Speed Here is small test program (I knock together quickly) to show the basic speed problem:
And the results on my PC:
As we can see just this simple example is 52x slower. I hope that there are ways to make it faster! NOTE: changing endl to '\n' in my example improved C++ streams making it only 3x slower than the FILE* streams (thanks jalf) there may be ways to make it faster. Difficulty to use I can't argue that printf() is not terse but it is more flexible (IMO) and simpler to understand, once you get past the initial WTF for the macro codes.
The Question Yes, may be there is need of a better C++ library, many be FastFormat is that library, only time will tell. dave |
|||||||||||||||||||||
|
|
Please have a look at http://www.ddj.com/cpp/184403651 then You will prefer C++ I/O than C I/O. in short C is prefered if you know data size prior to read or write and for speed. C++ is prefered if you don't know data size and for efficient code. |
|||
|
Banishing buffer overruns seems like a big win for C++ to me. |
|||||||||
|
|
In response to David Allan Finch's answer, I fixed an error in his benchmarking code (he flushed the stream in the C++ version after every single line), and reran the test: The C++ loop now looks like this:
I run 10000000 iterations (10 times more than in the original code, because otherwise, the numbers are just too small for time()'s lousy resolution to give us anything meaningful)) And the output is:
(note, the MSVC version was run on my laptop with a significantly slower harddrive) But this gives us a performance difference of 1.5-2.3x, depending on the implementation. and other external factors. |
||||
|
|
std::ifstream and std::ofstream are already in stl library. You don't have to create your own. The main benefit is all outputs and inputs are type safety. |
|||
|
|
|
C and C++ are two different languages. C++ file io takes some time getting used to, but once you are using algorithms, exceptions etc they tend to fall into place very naturally. |
||||
|
|
|
Lots. Drawbacks too. See C++ language FAQ for details. In short: type-safety and user-defined types. |
|||||||||||
|
|
The performance differences between printf()/fwrite style I/O and C++ IO streams formatting are very much implementation dependent. Some implementations (visual C++ for instance), build their IO streams on top of FILE * objects and this tends to increase the run-time complexity of their implementation. Note, however, that there was no particular constraint to implement the library in this fashion. In my own opinion, the benefits of C++ I/O are as follows:
|
|||
|
|