5

参考为什么在我包含 cin.get() 后控制台关闭?

我正在利用std::cin.get()

#include<iostream>    

char decision = ' ';
bool wrong = true;

while (wrong) {
    std::cout << "\n(I)nteractive or (B)atch Session?: ";

    if(std::cin) {
        decision = std::cin.get();

        if(std::cin.eof())
            throw CustomException("Error occurred while reading input\n");
    } else {
        throw CustomException("Error occurred while reading input\n");
    }

   decision = std::tolower(decision);
   if (decision != 'i' && decision != 'b')
        std::cout << "\nPlease enter an 'I' or 'B'\n";
   else
        wrong = false;
}

我读了 basic_istream::sentrystd::cin::get

我选择使用std::getlinewhile 循环执行两次,因为流不是空的。

std::string line; std::getline(std::cin, line);

正如我在上面发布的参考文献中的一个答案所述,std::cin用于读取字符并std::cin::get用于删除换行符\n

char x; std::cin >> x; std::cin.get();

我的问题是为什么要在流中std::cin留下换行符\n

4

2 回答 2

4

因为这是它的默认行为,但您可以更改它。试试这个:

#include<iostream>
using namespace std;

int main(int argc, char * argv[]) {
  char y, z;
  cin >> y;
  cin >> noskipws >> z;

  cout << "y->" << y << "<-" << endl;
  cout << "z->" << z << "<-" << endl;
}

给它一个由单个字符和一个换行符(“a\n”)组成的文件,输出是:

y->a<-
z->
<-
于 2013-04-09T14:55:19.547 回答
0

这很简单。例如,如果您想在读取时写入一个存储城市名称的文件,您将不希望读取带有换行符的名称。除此之外 '\n' 和其他字符一样好,并且使用 cin 你只是获取一个字符,那么它为什么要跳过任何内容呢?在大多数用例中,当逐个读取字符时,您不想跳过任何字符,因为您可能想以某种方式解析它,读取字符串时您不关心空格等。

于 2013-04-09T14:56:37.093 回答