gpt4 book ai didi

C++ 跳过换行键?

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

我试图让用户输入一些数据,然后将其存储在一个结构中,但是我不知道我应该使用哪个函数以及有什么区别? cin 或 getline()?我使用的任何一个函数,它似乎都接受了 '\n' 键并使我的程序崩溃,但如果这是问题所在,我不是 100%...因为它一直在崩溃。

我已经玩过他们两个,这就是我所拥有的。

string temp;
int id;

cout << endl << "Full name (last, first): ";
cin >> temp;
cin.ignore(1, '\n');
myData[fileSize] = parseName(temp);

cout << endl << "ID: ";
cin >> id;
myData[fileSize].id = id;

cout << endl << "Address: ";
cin >> temp;
temp.copy(myData[fileSize].address, temp.length(), 0);

变量 fileSize 就是数组当前所在的元素,函数 parseName 将名称拆分为最后一个和第一个。

我一直在阅读一些函数,例如 cin.ignore() 和 noskipws,但不确定如何使用它们。顺便说一句,用户输入数据的方式应该是“last, first”,后面有逗号和空格(这就是解析函数要查找的内容)。

我也不确定地址部分是否是执行此操作的最佳方式,我将结构 myData.address 设为字符数组,因为我不知道如何使用字符串。我对 C++ 仍然没有信心。感谢您的帮助。

编辑:如果我注释掉 ID 和地址部分,程序会自行循环 6 次,说我有一个无效条目(这是 main 的一部分),所以在我按下 enter 后它会读取 6 或 7 个键。如果我让一切保持原样,这就是我得到的。

    Full name (last, first): terminate called after throwing an instance of 'std::ou
t_of_range'
what(): basic_string::copy

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.

Process returned 3 (0x3) execution time : 4.328 s
Press any key to continue.

最佳答案

对于这种情况,您应该改用 cin.getline(),而 cin.ignore 不是必需的。

Here is an examination of the two methods - std::cin.getline( ) vs. std::cin

此外,检查您的 parseName 函数并尝试在没有任何用户 I/O 的情况下单独测试它。

关于C++ 跳过换行键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27923805/

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