我正在利用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::sentry和std::cin::get。
我选择使用std::getline
while 循环执行两次,因为流不是空的。
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
?