- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的代码的重点是打印到控制台,在提供r、b、g 或 o 键盘时显示RED、BLUE、GREEN 或OFF输入。 x 键盘输入终止。
还输出了一堆 SPACE 字符,设置了背景颜色以便在终端中显示纯色 block :
int i;
for (i=0;i<21;i++) { // for loop to print a load of empty lines
cout << " \n";
} // end of for loop
一开始一切正常,但是在第十次更改之后(即按 r、b、g 或 o,然后按 ENTER),实心色 block 溢出 \n 字符。
谁能告诉我为什么会这样?
我还预计 int main() 中的 else 语句将处理与预期的 r、b、g、o 或 x 不匹配的任何输入。它适用于单个字符,但如果输入了多个字符,它就会变得一团糟,不断滚动并且不会停止输入。
这是为什么?
完整代码(通过 NppExec 使用 MinGW g++.exe 编译,在 Win7 的 cmd 中运行):
#include <windows.h>
#include "iostream"
using namespace std;
/*******FUNCTION PROTOTYPES*********/
void TermClr(int ClrHeight);
void SetColor(int value);
void PrintOut(int output, int col1, int col2);
/*******MAIN PROGRAM****************/
int main() {
int output = 0; // variable for current colour being output, 0-3 for OFF, RED, BLUE, GREEN
char inkey[2]; // console input written to the INKEY variable
PrintOut(0,119,7); // calls printout function, dark grey background for the light, normal grey for text
while(1){ //while loops forever until break
cin.getline(inkey,2); //waits for input, stored to INKEY
if(!strcmp(inkey,"x")){ // string compare whether INKEY matches "x"
cout << "\nProgram Terminated in\n3...";
Sleep(1000);
cout << "\n2...";
Sleep(1000);
cout << "\n1...";
Sleep(1000);
break; //breaks if 'x' is input
} // end if inkey x
else if(!strcmp(inkey,"o")){
PrintOut(0,119,7); // calls PrintOut function, 'output' set to 0, red background for the light, red for text
continue;
} // end of if inkey o
else if(!strcmp(inkey,"r")){
PrintOut(1,204,12);
continue;
} // end of if inkey r
else if(!strcmp(inkey,"b")){
PrintOut(2,153,9);
continue;
} // end of if inkey b
else if(!strcmp(inkey,"g")){
PrintOut(3,170,10);
continue;
} // end of if inkey g
else{
TermClr(30);
printf("Input not recognized\n(x=terminate, o=off, r=red, b=blue, g=green)");
continue;
} // end of else
} //end of while
return 0;
} // end of main
/*******FUNCTIONS*******************/
// function to clear terminal - ClrHeight is the number of new rows, use enough in the function call to clear the terminal
void TermClr(int ClrHeight) {
int i;
for ( i = 0; i < ClrHeight; i++ ) {
putchar('\n');
} // end of for loop
} // end TermClr
// function for changing terminal font colours (run the exe in cmd prompt to see colours, doesn't work in nppexec)
void SetColor(int value){
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), value);
} // end SetColor
// function to print the required text to terminal
void PrintOut(int output, int col1, int col2) { // three inputs needed, the 'output' variable 0-3, the light colour text type, and the writing text type
TermClr(5); // calls func to clear teminal, 5 rows
const char *light[4] = {"OFF", "RED", "BLUE", "GREEN"}; // defines the four light colours
SetColor(col1);
int i;
for (i=0;i<21;i++) { // for loop to print a load of empty lines with the background colour 'col1'
cout << " \n";
} // end of for loop
SetColor(7);
cout << "\nColour - ";
SetColor(col2); // calls the function to change the console font colour (shows if run in cmd prompt, but not nppexec console)
cout << light[output];
SetColor(7);
cout << " (Output " << output << ")\n(x=terminate, o=off, r=red, b=blue, g=green)";
} //end PrintOut
编辑添加:
image showing the issues
我试过使用 std::endl 代替\n,这没有区别
进一步编辑:
如果我减少 for 循环中纯色的迭代次数,即
int i;
for (i=0;i<3;i++) { // for loop to print a load of empty lines
cout << " \n";
} // end of for loop
因此每次通过 while 循环打印的总行数较少,在输出溢出之前我得到了很多更改,但在足够多的时间后它仍然会发生。
编辑 3:
评论中的 Mark Ransom 已将 cmd 窗口确定为第一个问题的罪魁祸首。增加缓冲区高度允许在出现不良行为之前有更多的程序周期。 (ALT+SPACE、属性、布局选项卡)
James Whyte 的回答解决了多个键盘输入的问题,尽管我确实需要做一些工作以便忽略错误的输入而不是单独解释每个字符
编辑 4:
如果我使用 system("CLS")
而不是添加新行来清除屏幕,则缓冲区大小不再重要(猜测每次调用时它都会被清除)。我知道这是不好的做法,但是见鬼,它确实有效!任何人都有一个不错的替代方案吗?
最佳答案
[编辑]!- 至少这是解决了两个字符永远循环的问题。
我认为出现问题是因为使用了 char 数组而不是单个 char。我将您的代码纳入了一个新项目并毫无问题地复制了您的问题(笑话),并决定做一些修复程序来消除错误。
当您试图将行放入 char 数组时,该数组中已经有一个未清除的值,就会出现问题。它只是决定越过它,以永无止境的循环情况结束。
/*******MAIN PROGRAM****************/
int main() {
int output = 0; // variable for current colour being output, 0-3 for OFF, RED, BLUE, GREEN
char inkey; // console input written to the INKEY variable
PrintOut(0, 119, 7); // calls printout function, dark grey background for the light, normal grey for text
while (1) { //while loops forever until break
cin >> inkey; //waits for input, stored to INKEY
if (inkey == 'x') { // string compare whether INKEY matches "x"
cout << "\nProgram Terminated in\n3...";
Sleep(1000);
cout << "\n2...";
Sleep(1000);
cout << "\n1...";
Sleep(1000);
break; //breaks if 'x' is input
} // end if inkey x
else if (inkey == 'o') {
PrintOut(0, 119, 7); // calls PrintOut function, 'output' set to 0, red background for the light, red for text
continue;
} // end of if inkey o
else if (inkey == 'r') {
PrintOut(1, 204, 12);
continue;
} // end of if inkey r
else if (inkey == 'b') {
PrintOut(2, 153, 9);
continue;
} // end of if inkey b
else if (inkey == 'g') {
PrintOut(3, 170, 10);
continue;
} // end of if inkey g
else {
TermClr(30);
printf("Input not recognized\n(x=terminate, o=off, r=red, b=blue, g=green)");
continue;
} // end of else
} //end of while
return 0;
} // end of main
最后,如果您只需要在任何时候读入单个字符,请不要使用字符数组和字符串比较。像上面那样比较单个字符,或者更好的是,使用类似于以下内容的 switch case 来提高可读性。
switch (inkey)
{
case 'r': PrintOut(1, 204, 12); continue; // Print red square.
case 'g': PrintOut(2, 153, 9); continue; // Print green square.
case 'b': PrintOut(3, 170, 10); continue; // Print blue square.
case 'o': PrintOut(0, 119, 7); continue; //Print a grey block for inactive.
case 'x':
cout << "\nProgram Terminated in\n3...";
Sleep(1000);
cout << "\n2...";
Sleep(1000);
cout << "\n1...";
Sleep(1000);
break; //breaks if 'x' is input
default:
TermClr(30);
printf("Input not recognized\n(x=terminate, o=off, r=red, b=blue, g=green)");
continue;
} // end switch
关于C++ 控制台输出到 cmd 重复十次后出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49744434/
我需要检查在我的 RCP 应用程序中启动时是否加载了某些包。我知道有一个“主机 OSGi 控制台”可以显示 Eclipse IDE 中所有插件的状态,但我对这些不感兴趣。 我执行了以下步骤来获取我的应
在 pdb/ipdb 调试中,有用的 interact 命令为我提供了一个功能齐全的交互式 Python 控制台。 但是,这似乎始终是“标准”Python 控制台,即使我使用 ipdb 开始也是如此。
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我搜索过但找不到答案:如何在运行 Emacs 时选择:文件、编辑、选项、缓冲区、工具、C++ 等下拉菜单在控制台模式下?不是终端菜单。 不,F10 不是答案。 最佳答案 如果不是 F10,那么 M-x
我正在制作一个每 20-40 秒截屏一次的 c# 控制台应用程序。 我试过到处找,但所有其他示例都没有使用控制台 这是我到目前为止所做的代码: using System; using System.D
尝试使用 terraform 控制台,新功能。 我使用 tfstate 进入我的项目并运行“terraform 控制台”。 我可以使用常规插值系统获取变量值、数据和资源。但是,模块很难破解,我无法正确
我正在尝试调试一段返回错误的 SQL。我不确定 django 或 mysql 是否处理错误,所以我想通过 django 控制台运行它。 有办法设置吗? 提前致谢。 最佳答案 manage.py dbs
你好是否可以在 JPanel 中绘制 java 控制台返回的内容?你有教程可以遵循吗?谢谢开关 最佳答案 我不记得在哪里找到这个,但我已使用我称为 TextAreaOutputStream 的类将输出
我对 Xcode 甚至编程都有点陌生。 在 Xcode 中,在我的代码中,如何显示控制台并清除屏幕? 我知道我可以使用 Xcode 首选项来完成此操作,但我想以编程方式完成此操作。 最佳答案 这对我有
我正在开发一个 C# 项目,我需要从没有 API 或 Web 服务的安全网站获取数据。我的计划是登录,访问我需要的页面,并解析 HTML 以获取记录到数据库所需的数据位。现在我正在使用控制台应用程序进
我是编程新手,正在尝试不同的在线事件以掌握它。我遇到了一个特定的问题,我想制作一个程序,用户输入一个值并打印一个特定的字符串。例如,当用户输入 0 时,将打印字符串“black”,输入 1 将打印字符
我想创建一个终端/控制台,用户可以在其中输入命令。我知道 java,但我是 xml 的新手,所以我想知道如何在文本下生成文本,如果它变得很长,它应该是可滚动的,这是一张图片: 这是我的 xml cpd
我有一个由随机生成的数字组成的 nxn 网格。我有一个标签显示 X 轴和 Y 轴的元素编号: 对于单个数字,它可以正确对齐,但是当网格大小增加时,标签会变得不成比例并且不会像这样对齐: 我想知道是否有
假设我创建了一个包含两个变量的结构。 struct mystruct{ public: string name; int age;}; class School :public mystruct{ p
我正在重写一个服务器程序,我想在其中添加一个简单的控制台输入。 目前,它只是提供数据并为它所做的每一件事打印出一两行,作为任何观看/调试的人的描述性措施。 我想要的是有一个始终位于底部的“粘性”输入栏
我必须编写启动另一个进程(GUI)的控制台应用程序。然后,使用其他应用程序或相同的选项,我必须能够停止子进程。此外,如果子进程从 GUI 关闭,则必须通知我执行最终任务(如果被杀死,则相同)。 我认为
我一直在尝试到处寻找以下问题的答案: Linux上的标准输出/控制台默认将内容保存到文件中吗? 我不想保存内容或重定向输出(我已经知道这一点),我只是想知道它是否已经通过 linux 中包含的某个默认
我正在尝试不同的事件,因为我是初学者并且想了解更多。我正在尝试在我的代码所在的同一行打印一个图案: int main() { int numOfWiggles; int count;
在我的一项小任务中,我被要求创建一个数组来存储从用户提供的输入中获取的姓名和地址,并且稍后能够从数组中删除姓名和地址。 如果能帮助我理解如何实现这一目标,我们将不胜感激,谢谢。 编辑 - 该数组将像地
如果您想在 Python shell 中查看特定模块中定义了哪些模块,一种选择是键入 dir(path.to.module)。不幸的是,这不仅列出了特定模块中定义的类或函数,还包括该模块导入的类或函数
我是一名优秀的程序员,十分优秀!