Question about cin.

Started by
1 comment, last by senelebe 17 years, 11 months ago
hola, I was wondering, after you get a users input, is it a good idea to place cin.ignore after ever cin? Heres an example:

int main()
{
    int favNum;
    int favNum2;

    std::cout << "Whats your favorite number? ";
    std::cin >> favNum;
    std::cin.ignore();

    std::cout << "\nWhats your 2nd favorite number? ";
    std::cin >> favNum2;
    std::cin.ignore();

    std::cout << "\n\nYour favorite number is: " << favNum
              << "\nYour 2nd Favorite number is: " << favNum2;

    return 0;
}
Thanks for any help. :D
Advertisement
It is not needed.

cin.ignore is only useful if the input buffer contains data you don't want to read in. It is very useful, for instance, when you use a cin.get or cin.getline.

The stream operator (>>) ignores whitespace (spaces, tabs, newlines). so when you do:

std::cin >> some_number; 


the whitespace after the number is left on the stream. The next time you use the stream operator this will be disreguarded. If you use cin.get, however it will not. It is situations like this that cin.ignore becomes useful.
The problem arises when you have input such as this:

"2 2"

cin is only going to grab the first 2. The second two is going to be left in the buffer and it's going to cause problems.

http://www.parashift.com/c++-faq-lite/input-output.html#faq-15.2

This is a great faq about cin and the way it operates. It directly corelates to your question. Read through it, it should clear up any misunderstanding.

[Edited by - Run_The_Shadows on May 1, 2006 1:16:22 PM]

This topic is closed to new replies.

Advertisement