gpt4 book ai didi

c++ - 在 C++ 中的 getline 之后必须按 "Enter"两次吗?

转载 作者:行者123 更新时间:2023-12-03 12:50:48 26 4
gpt4 key购买 nike

我疯狂地用谷歌搜索了这个问题,找到了许多“解决方案”,以及 2001-2007 年的论坛帖子,说这是 Visual Studio 中的一个“众所周知的错误”......所以为什么不呢?现在修好了吗?我使用的是 VisualStudio 2013(版本 12)。

这是我的代码:

#include <iostream>
#include <iomanip>
#include <string>
#include <Windows.h>
#include <vector>
#include <conio.h>
#include <string>

#undef max

using namespace std;

/*
TEST CASES:

*/



// START FUNCTION - Add Restaurant
void resto(vector<string> &restaurant)
{
std::string resto_name;
cin.ignore();
//cin.clear();
//cin.sync();
std::getline (std::cin, resto_name,'\n');
restaurant.push_back(resto_name);
}
// END FUNCTION - Add Restaurant

// START FUNCTION - Print Vector
void print_vector(vector<string> &restaurant)
{
cout << endl << "Your Current Restaurants:" << endl;
for (int i = 0; i < restaurant.size(); i++)
{
cout << i + 1 << ". " << restaurant[i] << endl;
}
}
// END FUNCTION - Print Vector



int main(void)
{
srand(time(0));

int menu;

vector<string> restaurant; //Initialize Vector

do {
system("cls");
cout << " -----------------------------------------------------------" << endl;
cout << "| -:|:- Welcome to Restaurant Battle Royale! -:|:- |" << endl;
cout << "|-----------------------------------------------------------|" << endl;
cout << "| Please select an option by pressing 1, 2, 3, 4, 5, or 6 |" << endl;
cout << "|\t\t\t then press ENTER.\t\t |" << endl;
cout << "|-----------------------------------------------------------|" << endl;
cout << "| 1 - Display all restaurants\t\t\t\t |" << endl;
cout << "| 2 - Add a restaurant\t\t\t\t\t |" << endl;
cout << "| 3 - Remove a restaurant\t\t\t\t |" << endl;
cout << "| 4 - Shuffle the vector\t\t\t\t |" << endl;
cout << "| 5 - Begin the tournament\t\t\t\t |" << endl;
cout << "| 6 - Quit the program\t\t\t\t\t |" << endl;
cout << " -----------------------------------------------------------" << endl;

cout << "Option: ";
cin >> menu;

//OPTION 1
switch (menu)
{
case 1:

print_vector(restaurant);

cout << endl;

printf("Press any key to return to the main menu...");
system("pause > nul");
break;

//OPTION 2
case 2:
cout << "\nPlease enter the name of the restaurant you'd like to add." << endl;

resto(restaurant);

break;

//OPTION 3
case 3:

break;

case 4:
return 0;
}
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
} while (menu != 6);


return 0;

}

我遇到的问题是在“添加餐厅”功能中。输入 getline 后,您必须按两次 Enter 键。我尝试过添加“\n”和“endl”之类的方法,但没有成功。我很想认为这是编译器的一个错误,但经过这么多年的开发,这个错误持续这么长时间,这太可悲了,对吧?

所以这一定是我的代码。你能帮我找出问题所在吗?

我已经在这个问题上坚持了几个小时了,我无法继续前进,因为它太困扰我了。

================================================== =====

引用文献:

微软对此的解决方案来自谁知道何时: http://support2.microsoft.com/default.aspx?scid=KB;EN-US;q240015&ID=KB;EN-US;q240015(查看字符串文件后,看起来他们已将此建议的更改应用到当前版本)

我尝试过的解决方案对其他人有效,但对我无效: http://www.dreamincode.net/forums/topic/35262-visual-c-getline-bug/

最佳答案

@sajas 是正确的。您需要 cin.ignore() 的原因在resto里面是因为cin >> menu之后,流中会留下杂散换行符。后续getline提取换行符并立即终止。 cin.ignore()将提取并丢弃杂散换行符,从而允许 getline才能正常工作。

实际上,导致问题的行是:

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

这一切只是提取并丢弃换行符之前的所有字符,因此完全没有必要。

<小时/>

为了捕获错误的输入,您可以这样做:

    while (!(cin >> menu))
{
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
std::cout << "Please enter a number.\nOption: ";
}

如果提取失败(因为用户没有输入数字),则清除错误标志,丢弃流中的所有错误字符,然后再次要求输入。它将循环直到用户输入数字。

<小时/>

@The Paramagnetic Croissant's comment , using namespace std; is considered bad practice.我注意到你与你放置的位置不一致 std:: 。一般来说,如果您选择使用 using 指令,请将其放置在函数内,这样它就不会污染全局命名空间。最好养成输入std::的习惯。到处都是,因为输入的次数并不多。

您包含了非标准 Windows header 、Windows.h 和 conio.h。由于您没有利用任何 API 功能,因此您不需要它们。

删除printf 。你不需要它。

system()是非常特定于平台的并且不受欢迎(尽管我没有任何来源来支持这一点。)更喜欢 cin.get()system("pause")并删除 system("cls")因为这可能会激怒用户。

内部print_vector ,您正在使用int当你应该使用std::size_t时或者最好std::vector<string>::size_type 。您的编译器可能会警告您:

main.cpp:56:23: warning: comparison of integers of different signs: 'int' 
and 'size_type' (aka 'unsigned long') [-Wsign-compare]
for (int i = 0; i < restaurant.size(); i++)

关于c++ - 在 C++ 中的 getline 之后必须按 "Enter"两次吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26581793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com