Just a few days ago I spent way too long looking at the boost libraries to see if there was a way of adapting a std::fstream to an iterator type. I didn't find what I was looking for and did what I wanted a completely different way.
This morning while reading Stroustrup (The C++ Programming Language) I learned that what I was looking for was already built in to the standard library!
Well, after an hour or so of work I eliminated about 40 lines of code, made my code more maintainable and more readable.
As a test case, I put together this little example. The below code is a complete program, it will compile and run and copy "input.txt" to "output.txt".
It works with any file, binary or not (which is why the noskipws is needed). No, it is NOT the most efficient way of doing things, but it shows just how expressive the C++ standard library is.
#include <istream> #include <iostream> #include <fstream> #include <iterator> using namespace std; int main() { fstream f("input.txt", fstream::in|fstream::binary); f << noskipws; istream_iterator<unsigned char> begin(f); istream_iterator<unsigned char> end; fstream f2("output.txt", fstream::out|fstream::trunc|fstream::binary); ostream_iterator<char> begin2(f2); copy(begin, end, begin2); }
Recent comments
2 hours 39 min ago
2 hours 40 min ago
12 hours 53 min ago
14 hours 21 min ago
14 hours 21 min ago
14 hours 21 min ago
21 hours 38 min ago
2 weeks 3 days ago
4 weeks 4 days ago
4 weeks 4 days ago