0
votes
4answers
52 views
Using istream_iterator and reading from standard input or file
Hi, I'm writing in Microsoft Visual C++ and I'd like my program to either read from standard input or a file using the istream_iterator. Googling the internets hasn't shown how simple I think it must …
0
votes
2answers
119 views
getline vs istream_iterator
Should there be a reason to preffer either getline or istream_iterator if you are doing line by line input from a file(reading the line into a string, for tokenization).
1
vote
3answers
72 views
C++ compilation error using string and istream_iterator
When trying to compile the following:
#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
string s(istream_iterator<char>(cin), …
0
votes
2answers
94 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 …
3
votes
8answers
363 views
How to read arbitrary number of values using std::copy?
Hi,
I'm trying to code opposite action to this:
std::ostream outs; // properly initialized of course
std::set<int> my_set; // ditto
outs << my_set.size();
std::copy( my_set.begin(), …
