Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why is this cin reading jammed?

I overloaded the istream operator (istream &operator>>...) and it takes in a Point of the format:

(<x-coordinate>,<y-coordinate>)

I want to test this out multiple (10) times, and so have written:

for (int i = 0; i < 10; i++)  {
    cin >> a;
    if (!cin.fail()) { cout << a << endl; }
    else { cout << "Invalid input!" << endl; cin.clear(); }
}

EDIT:

I now have the following code:

for (int i = 0; i < 10; i++)  {
    cin >> a;
    if (!cin.fail()) { cout << a << endl; }
    else {
        cout << "Invalid input!" << endl; cin.clear();
        while (!cin.eof()) { cin.ignore(); } cin.ignore();
    }
}

The ignore was suggested by Cthulhu. However, the problem is cin still outputs "Invalid input!" after running through the code above:

(3,3) <-- input
(3,3) <-- output
Invalid output! <-- second output

Is there a way that I can clear what is in cin?

share|improve this question
3  
cin.clear() clears the flags, not the contents. You want ignore. – chris Oct 28 '12 at 0:54
Sadly, "jammed" is not a term I would have searched for and tl;dr. :) – Supervisor Oct 28 '12 at 1:03
1  
tl;dr isn't good reply to helpful answer. – Yossarian Oct 28 '12 at 1:05
@Supervisor: If the prior material on the topic is too long for you to bother reading, then your question is too long for me to bother answering. – Lightness Races in Orbit Oct 28 '12 at 1:08
Sorry Ben. No disrespect. :'( – Supervisor Oct 28 '12 at 1:13

marked as duplicate by Ben Voigt, DarkCthulhu, K-ballo, jogojapan, Donal Fellows Oct 28 '12 at 22:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

cin.clear() does not empty the buffer, it resets error flags on the stream. You then have to call cin.ignore

istream&  ignore ( streamsize n = 1, int delim = EOF );

Extracts characters from the input sequence and discards them.

The extraction ends when n characters have been extracted and discarded or when the character delim is found, whichever comes first. In the latter case, the delim character itself is also extracted.


cin.clear();
cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

Numeric Limits

share|improve this answer
I replaced cin.clear() with cin.ignore() and got the same results. – Supervisor Oct 28 '12 at 0:56
1  
You need both. Also call cin.clear with the right arguments. A number of buffer characters to be cleared, and a delimiter, at which clearing stops. – DarkCthulhu Oct 28 '12 at 0:57
Even with: cin.clear(); cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); It still has one output of "Invalid inptut!" I will just use a boolean to keep track of whether or not it went into the else statement and skip the "\n" manually. Thanks for the help. – Supervisor Oct 28 '12 at 1:09
The output is the same still? – DarkCthulhu Oct 28 '12 at 1:09
It's: (3,3) (3,3) Invalid input! – Supervisor Oct 28 '12 at 1:10

Not the answer you're looking for? Browse other questions tagged or ask your own question.