> l-6ren">
gpt4 book ai didi

c++ - 程序不会在 "getline"处停止

转载 作者:太空宇宙 更新时间:2023-11-04 13:52:21 24 4
gpt4 key购买 nike

我已经尝试在 Internet 上找到解决方案,但我无法根据自己的情况找到它。

在这个函数中,当我调用 getline(cin,line) 时,程序不会停止插入值。例如,如果我更改为 cin >> line 一切正常。

void AddPeople(vector <People*> people_list)
{
system("CLS");
string line;
string first_name, second_name, third_name;
string delimiter = " ";
size_t pos = 0;
string token;
int i=0;

cout << "MENU::Add name" << endl;
cout << "Name: ";
getline(cin, line);

while ((pos = line.find(delimiter)) != string::npos)
{
token = line.substr(0, pos);
line.erase(0, pos + delimiter.length());
i++;
if(i==1)
{
first_name=token;
}
else if (i=2)
{
second_name=token;
third_name=line;
}
}

people_list.push_back(new People(first_name, second_name, third_name));
}

最佳答案

getline() 在给定行尾字符时表现有趣。

程序:

int x;
std::cin>>x;
std::string a;
std::getline(std::cin, a);

当给定输入 "42\na\n" 时,这会将 42 读入 x 并将 "" 读入 a 因为有 0 '2''\n' 之间的字符。这可以通过在循环中调用 std::getlinea 中没有任何内容来解决。

关于c++ - 程序不会在 "getline"处停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22967638/

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