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
18 hours 24 min ago
23 hours 28 min ago
23 hours 56 min ago
1 day 16 hours ago
1 day 23 hours ago
1 week 6 days ago
3 weeks 17 hours ago
3 weeks 1 day ago
3 weeks 3 days ago
3 weeks 4 days ago