[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

How do I use istream_iterator interactively with cin?

Asked by adshelly in C++ Programming Language, Microsoft Visual C++

Tags: how, istream_iterator, use

I have a parse function that uses STL iterators:

template <class Iterator>
void Parse(Iterator first, Iterator last)
{
   while (first != last)
  {
    string s = *(first++);
    if (s=="q") return;
    else DoCoolStuff(s);
  }
}      

it works great for lists and file iterators:

list<string> test;
test.push_back("Hello");
test.push_back("World");
Parse(test.begin(), test.end());    // this works fine

ifstream infile("test.cpp");
istream_iterator<string> file_it(infile), eof;
Parse(file_it, eof);  // this works fine

but it doesn't work the way I expect if
I use this:

istream_iterator<string> con_it(cin), eoi;
cout << "Press 'q' to quit" << endl;  
Parse(con_it, eoi);  

My problem is that it does not return from the iterator constructor until I enter some data in the console.  And after that it is always one word behind.  I have to enter another word after the "q" in order to make it quit.  My guess is that istream_iterator is doing some read-ahead so that it knows if it is at EOF.   So it won't work when I want to enter data and get immediate results.   Is there some trick to allowing input iterators to process the last entry typed?

RealQuestion:
  Can someone show me how to call my
Parse() function with input from the console, so that when I hit <enter>,
it processes the most recent entry?

Thanks,
-Adam



 
Related Solutions
Keywords: How do I use istream_iterator interacti…
 
Loading Advertisement...
 
[+][-]06/28/00 05:27 PM, ID: 3113973Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/28/00 05:48 PM, ID: 3114151Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/28/00 05:52 PM, ID: 3114191Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/29/00 11:17 AM, ID: 3127176Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/29/00 11:17 AM, ID: 3127177Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/29/00 11:55 AM, ID: 3127574Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/29/00 12:02 PM, ID: 3127670Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06/29/00 12:41 PM, ID: 3128253Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/29/00 01:05 PM, ID: 3128578Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: C++ Programming Language, Microsoft Visual C++
Tags: how, istream_iterator, use
Sign Up Now!
Solution Provided By: nietod
Participating Experts: 1
Solution Grade: A
 
[+][-]06/29/00 04:08 PM, ID: 3130832Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/29/00 04:08 PM, ID: 3130833Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81