gpt4 book ai didi

c++ - cin 缓冲区有一些烦人的问题

转载 作者:行者123 更新时间:2023-11-30 04:50:26 30 4
gpt4 key购买 nike

这是我的代码。基本上,我主要是将用户传递给这个选择器菜单。当用户做出选择时,我将传递回 main,然后将它们传递给适当的类以执行进一步的功能。

例如,当用户选择“发送”时,它们会传递给 main,然后传递给一个函数,该函数收集有关发送位置的输入。然后回到 main,然后回到一个询问他们多少钱的函数。这第一次运行良好。

问题是,如果他们尝试发送另一笔交易,它会自动用之前输入的金额填充地址。用户必须自己从控制台行删除它。基本上,金额会卡在 cin 缓冲区中并自动填充变量。我试过使用getline,它有同样的问题。我可以使用一个小函数使用 cin.clear() 和 cin.ignore(1000,'\n') 来清除 cin 缓冲区,它解决了我的问题,但是用户必须在输入后额外输入一次。

我已将问题隔离到菜单。当我从我的程序中排除菜单时,问题就消失了。菜单还在制作中,我知道它不够漂亮或精致。我不明白为什么要这样做。请帮忙,我要把我的头发扯下来。

此外,问题不在代码的 if(refresh){...} 部分,我已尝试排除该部分,但问题仍然存在。

菜单头文件只有一些私有(private)变量和 vector 声明。我很乐意根据要求发布额外的代码。

菜单.cpp

#include "menu.h"
#include "KMD_COMMANDS.h"
#include <windows.h>

std::string menu::userInterface()
{
KMD_COMMANDS displayInfo;

bool selecting = true; //
refresh = true; //
numRight = 3; //reset variables back to default
options = oDWB; // < string vector

system("cls");

hideCursor();
while(selecting)
{
numLeft = 3 - numRight; //sets the number of left movements available

if(refresh) //only refresh the screen when user makes an input. I plan to use a console vector updating method in the future instead of "cls"... I know "cls" sucks
{
system("cls");

std::cout << "Balance: ";
displayInfo.getBalance();
std::cout<<std::endl;
std::cout << "Public Address: ";
displayInfo.getPubKey();
std::cout<<std::endl;

for(int i = 0; i < options.size(); i++)
{
std::cout << options[i];
}

refresh = false; //refresh is done
}

Sleep(100); //this makes a delay so inputs are less sensitive

if(GetAsyncKeyState(VK_RIGHT))
{
refresh = true; //reset refresh variable so console updates

switch(numRight) //moves the selector around
{
case 1:
numRight--;
options = optionsDefault; //sets the options selector
options[12] = "["; //back to default state
options[14] = "]"; //and moves brackets
break;
case 2:
numRight--;
options = optionsDefault;
options[8] = "[";
options[10] = "]";
break;
case 3:
numRight--;
options = optionsDefault;
options[4] = "[";
options[6] = "]";
break;
default:
break;
}
}

if(GetAsyncKeyState(VK_LEFT)) //moves the selector around
{
refresh = true;

switch(numLeft)
{
case 1:
numRight++;
options = optionsDefault;
options[0] = "[";
options[2] = "]";
break;
case 2:
numRight++;
options = optionsDefault;
options[4] = "[";
options[6] = "]";
break;
case 3:
numRight++;
options = optionsDefault;
options[8] = "[";
options[10] = "]";
break;
default:
break;
}
}

if(GetAsyncKeyState(VK_UP)) //takes users selection (changed to up for debugging purposes)
{
switch(numRight) //takes selection choice based from number of right inputs remaining
{
case 1:
userChoice = "send";
return userChoice;
break;
case 2:
userChoice = "unlock";
return userChoice;
break;
case 3:
userChoice = "lock";
return userChoice;
break;
default:
userChoice = "quit";
return userChoice;
break;
}
}
}
}

这里是传递给用户收集信息的地方,cins所在的地方:

#include "confirmSend.h"

#include <iostream>
#include <windows.h>

std::string confirmSend::sendToAddress()
{
Sleep(100); //delay so user doesn't accidentally input twice

bool confirm = false;
std::string addressInput;
while(!confirm)
{
//std::cin.clear();
// std::cin.ignore(1000,'\n');

system("cls");
std::cout << "Type cancel to cancel..." << std::endl;
std::cout<<std::endl;
std::cout << "Enter the address of where to send: ";
std::cin >> addressInput;
Sleep(800);
// std::cout<<std::endl;

confirm = true;
}

return addressInput;
}

int confirmSend::sendAmount()
{
Sleep(100); //delay so user doesn't accidentally input twice

bool confirm = false;
int amount;

while(!confirm)
{
// std::cin.clear();
// std::cin.ignore(1000,'\n');

system("cls");
std::cout << "type 0 to cancel..." << std::endl;
std::cout<<std::endl;
std::cout << "Enter how much to send:" << std::endl;
std::cin >> amount;
std::cout << std::endl;

confirm = true;
}

return amount;
}

最佳答案

每一个std::cin都输入完后点击“enter”,cin缓冲区中会留下一个'\n',需要一些方法来消除它。如果只有 '\n' 或其他,使用 getchar() 作为简单的解决方案。如果'\n'之前还有更多的字符,你可以使用getline()来消除所有字符,直到它得到'\n'。

关于c++ - cin 缓冲区有一些烦人的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54973389/

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