Tagged Questions
3
votes
2answers
136 views
istream_iterator ignoring EOF (Ctrl+D) when reading chars
I'm trying to use istream_iterator for reading characters from cin. I've read that pressing Ctrl+D sends an EOF character which ends the input stream. Unfortunately, something is going wrong with it. ...
1
vote
5answers
484 views
Confused about usage of `std::istreambuf_iterator`
I've implemented a deserialization routine for an object using the << stream operator. The routine itself uses an istreambuf_iterator<char> to extract characters from the stream one by ...
1
vote
2answers
142 views
Why does istream_iterator<unsigned char, unsigned char> throw std::bad_cast?
What is going on?
#include <iostream>
#include <iterator>
#include <sstream>
int main() {
std::basic_stringbuf<unsigned char> buf;
std::basic_istream<unsigned ...
0
votes
1answer
127 views
Copying from istream never stops
This bit of code runs infinitely:
copy(istream_iterator<char>(cin), istream_iterator<char>(), back_inserter(buff));
The behavior I was expecting is that it will stop when I press enter.
...
0
votes
2answers
179 views
what is the result of incrementing an istream_iterator which is already at the end of the stream?
I've looked at the standard and didn't see an obvious answer.
suppose i've done this:
std::istream_iterator<char> is(file);
while(is != std::istream_iterator<char>()) {
++is;
}
now ...