为了账号安全,请及时绑定邮箱和手机立即绑定

CIN和getline跳过输入

CIN和getline跳过输入

C++ C
阿波罗的战车 2019-06-12 16:54:50
CIN和getline跳过输入早些时候我发布了一个关于cin跳过输入,我得到了要刷新的结果,并使用istringstream,但现在我尝试了所有可能的解决方案,但都没有奏效。这是我的代码:void createNewCustomer () {     string name, address;     cout << "Creating a new customer..." << endl;     cout << "Enter the customer's name: "; getline(cin, name);     cout << "Enter the customer's address: "; getline(cin, address);     Customer c(name, address, 0);     CustomerDB::addCustomer(c);     cout << endl;}但是我仍然得到同样的东西,跳过输入,当它接受输入时,它接受它们并以名义存储空的任何东西,在地址上它需要我写的名字,但是从第二封信到结尾我的密码怎么了?我试过cin.ignore(), cin.get(),和cin.clear()他们都孤零零地在一起,没有人工作。编辑:main.cpp调用的主要方法mainMenu()只void mainMenu () {     char choice;     do {         system("cls");         mainMenuDisplay();         cin >> choice;         system("cls");         switch (choice) {             case '1':                 customerMenu();                 break;             case '2':                 dvdMenu();                 break;             case '3':                 receiptMenu();                 break;             case '4':                 outro();                 break;             default:                 cout << '\a';         }         cin.ignore();         cin.get();     } while (choice != '4');}我将选择1作为客户示例,这是customerMenu()void customerMenu () {     char choice;     do {         system("cls");         manageCustomerMenu();         cin >> choice;         system("cls");         switch (choice) {             case '1':                 createNewCustomer();                 break;             case '2':                 deleteCustomer();                 break;             case '3':                 updateCustomerStatus();                 break;             case '4':                 viewCustomersList();                 break;             case '5':                 mainMenu();                 break;             default:                 cout << '\a';         }         cin.ignore();         cin.get();     } while (choice != '5');}
查看完整描述

3 回答

?
汪汪一只猫

TA贡献1898条经验 获得超8个赞

如果你用getlinecin >> something,您需要在中间从缓冲区中清除换行符。

如果不需要超过换行符的字符,我个人最喜欢的是cin.sync()..但是,它是定义的实现,所以它的工作方式可能与对我不同。对于实心的东西,请使用cin.ignore()..或利用std::ws如果需要的话,移除前导空格:

int a;cin >> a;cin.ignore (std::numeric_limits<std::streamsize>::max(), '\n'); 
//discard characters until newline is found//my method: cin.sync(); //discard unread charactersstring s;getline (cin, s);
 //newline is gone, so this executes//other method: getline(cin >> ws, s); //remove all leading whitespace


查看完整回答
反对 回复 2019-06-12
?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

菜单代码的结构是问题所在:

cin >> choice;   // new line character is left in the stream

 switch ( ... ) {
     // We enter the handlers, '\n' still in the stream
 }cin.ignore();   // Put this right after cin >> choice, before you go on
                // getting input with getline.


查看完整回答
反对 回复 2019-06-12
?
慕沐林林

TA贡献2016条经验 获得超9个赞

在这里,'\n'由CIN留下的,正在制造问题。

do {
    system("cls");
    manageCustomerMenu();
    cin >> choice;               #This cin is leaving a trailing \n
    system("cls");

    switch (choice) {
        case '1':
            createNewCustomer();
            break;

这,这个\n中的下一个getline正在使用createNewCustomer()..你应该用getline代替-

do {
    system("cls");
    manageCustomerMenu();
    getline(cin, choice)               
    system("cls");

    switch (choice) {
        case '1':
            createNewCustomer();
            break;

我认为这样可以解决问题。


查看完整回答
反对 回复 2019-06-12
  • 3 回答
  • 0 关注
  • 677 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信