Tagged Questions

15
votes
2answers
408 views

std::istream_iterator<> with copy_n() and friends

The snippet below reads three integers from std::cin; it writes two into numbers and discards the third: std::vector<int> numbers(2); copy_n(std::istream_iterator<int>(std::cin), 2, ...
10
votes
3answers
321 views

Limiting the range for std::copy with std::istream_iterator

I have constructed a minimal working example to show a problem I've encountered using STL iterators. I'm using istream_iterator to read floatss (or other types) from a std::istream: #include ...
5
votes
9answers
750 views

How to read arbitrary number of values using std::copy?

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(), ...
3
votes
3answers
118 views

in(std::cin) : What does it mean?

In the first example of Boost, in(std::cin) is used. I think in() get an istream and create some kind of iterator. However, I could not find any C++ documentation that explain it in detail. Could you ...
3
votes
2answers
133 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. ...
3
votes
2answers
67 views

Sparing User from Specifying Policy Template Parameter

I'm designing a kind of istream_iterator (call it my_istream_iterator) designed to extract words from an input stream. The manner in which the words extracted from the iterator will be dealt with is ...
2
votes
3answers
105 views

istream_iterator question, using in loop

Why will this loop not terminate? The program freezes after it prints out all the elements in the istream_iterator. /*30*/ int main( int arc, char **arv ) { /*31*/ vector<float> numbers( ...
2
votes
2answers
138 views

Can one define two `istream_iterator`s to a single file?

ifstream file1; file1.open("in1.txt"); istream_iterator<string> iterator1(file1); copy(istream_iterator<string>(file1), istream_iterator<string>(), back_inserter(lstr)); Can we ...
2
votes
1answer
215 views

Can't instantiate an istring_iterator using a wistringstream

I'm trying to split a string using the method found in this thread, but I'm trying to adapt it to a wstring. However, I have stumbled upon a weird error. Check the code: #include <iostream> ...
2
votes
2answers
159 views

Why can't I construct an std::istream_iterator with an unnamed temporary?

g++ allows this construction of an istream_iterator from an ifstream instance: std::ifstream ifstr("test.txt"); std::istream_iterator<std::string> iter1(ifstr); ...but it doesn't allow ...
1
vote
1answer
116 views

simple istream_iterator question

I am new to C++, sorry if this is a silly question. I cannot seem to figure out why this does not work. It copies into the first vector, and seems to skip past the second copy call. #include ...
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 ...
1
vote
2answers
701 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
327 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
0answers
36 views

Reading a fixed number of arguments using istream_iterator [closed]

Possible Duplicate: Limiting the range for std::copy with std::istream_iterator We know, for example, how to read all the integers from stdin into a vector using istream_iterator: ...
0
votes
1answer
131 views

Using boost IOStreams with std::ostream_iterator

I tried to use an array-device based stream and wantet to pass the stream to std::ostream_iterator or std::istream_iterator, but unfortunately, I get a compilation error with gcc 4.3.5. ...
0
votes
7answers
133 views

Why does this code continuously print newlines?

int row,column; for (;;) { cin >> rows >> columns; if (!rows && !columns) break; vector<char> dots(rows * columns); ...
0
votes
1answer
148 views

copy using istream_iterator

What would be end of source in this case when getting a string input from console? int main() { std::vector<std::string> str; copy (istream_iterator<std::string>(std::cin), ...
0
votes
1answer
125 views

istream_iterator leaking memory

All right, you guys were very helpful with my last question, so I'll try another one. This is also homework and while the last one was quite old, this has been submitted and is waiting to be marked. ...
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
4answers
2k views

Using istream_iterator and reading from standard input or file

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 be. ...
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 ...