如何限制用户仅在C ++中输入单个字符

时间:2017-10-23 05:10:51

标签: c++ string char eof stringstream

我是初学者,我试图限制用户只输入一个字符,我知道使用cin.get(char)并且它只会从输入中读取一个字符,但我不想要其他字符留在缓冲区中。以下是使用EOF的代码示例,但它似乎不起作用。

     #include <iostream>
     #include <sstream>
     using namespace std;

     string line;
     char category;
     int main()
     {
         while (getline (cin, line))
         {
             if (line.size() == 1)
             {
                 stringstream str(line);
                 if (str >> category)
                 {
                     if (str.eof())
                         break;
                 }
             }
             cout << "Please enter single character only\n";
         }                  
     }

我已经将它用于数字输入,并且eof工作正常。 但对于char categorystr.eof()似乎是错误的。 谁能解释一下?提前谢谢。

1 个答案:

答案 0 :(得分:0)

仅当您尝试读取过去流的末尾时,才会设置eof标志。如果str >> category读取超过流的末尾,if (str >> category)将评估为false并且未进入循环以测试(str.eof())。如果该行上有一个字符,则必须尝试读取两个字符才能触发eof。阅读两个字符比测试line的长度要花费多长时间要多得多。

while (getline (cin, line))从控制台获得了整条线。如果你没有在stringstream中使用它并不重要,那么当你在cin中循环回来时,那些东西就会消失while

事实上,stringstream并没有给你任何好处。一旦确认了读取的行的长度,就可以使用line[0]

#include <iostream>
using namespace std;

int main()
{
    string line; // no point to these being global.
    char category;
    while (getline(cin, line))
    {
        if (line.size() == 1)
        {
            //do stuff with line[0];
        }
        else // need to put the fail case in an else or it runs every time. 
             // Not very helpful, an error message that prints when the error 
             // didn't happen.
        {
            cout << "Please enter single character only\n";
        }
    }
}