Is there a way to read input directly from the keyboard in standard C++?(有没有办法在标准 C++ 中直接从键盘读取输入?)
问题描述
我知道有 std::cin
,但这需要用户输入一个字符串,然后按 ENTER.有没有一种方法可以简单地获取按下的下一个键而无需按 ENTER 确认
And I know there's std::cin
, but that requires the user to enter a string, then press ENTER. Is there a way to simply get the next key that is pushed without needing to press ENTER to confirm
推荐答案
可以使用
#include <conio.h>
然后用这种情况捕获字符
and then catch char with cases such as this
char c;
if (_kbhit())
{
c = getch();
switch(c)
{
case ‘ H’ :
cout << "up arrow key!" << endl;
break;
}
}
注意:我没试过……记得把整个东西放到while(true)"中测试一下.
Beware: I have not tried it... and remember to put the whole thing into a "while(true)" to test.
这篇关于有没有办法在标准 C++ 中直接从键盘读取输入?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有没有办法在标准 C++ 中直接从键盘读取输入?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01