这是我的一些代码。基本上,我主要是将用户传递到此选择器菜单。当用户做出选择时,我将返回主菜单,然后将其传递给适当的类以执行进一步的功能。
例如,当用户选择“发送”时,他们将传递给main,然后传递给一个函数,该函数收集有关发送位置的输入。然后返回main,然后返回一个询问他们多少的函数。第一次就可以正常运行。
问题是,如果他们尝试发送另一笔交易,它将自动使用先前输入的金额填充地址。用户必须自己从控制台行将其删除。基本上,该数量被卡在cin缓冲区中并自动填充该变量。我试过使用getline,它有同样的问题。我可以使用一个小函数通过cin.clear()和cin.ignore(1000,'\ n')来清除cin缓冲区,它可以解决我的问题,但随后用户必须在输入后再输入一次。 / p>
我将问题隔离到菜单上。当我从程序中排除菜单时,问题消失了。菜单还在进行中,我知道它不漂亮或不够精美。我不知道为什么要这么做。请帮忙,我要把头发撕掉。
此外,问题不在代码的if(refresh){...}部分中,我尝试排除该问题,问题仍然存在。
菜单头文件只有一些私有变量和向量声明。我很乐意根据要求发布额外的代码。
menu.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;
}
}
}
}
这里是传递用户收集信息和cin所在位置的地方:
#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;
}
答案 0 :(得分:1)
在输入每个std :: cin之后,单击“ enter”,在cin缓冲区中将剩下一个'\ n',您需要某种方法来消除它。如果只有一个'\ n'或其他,请使用getchar()
作为简单的解决方案。而且如果'\ n'之前还有更多字符,则可以使用getline()
消除所有字符,直到得到'\ n'。