gpt4 book ai didi

c++ - 如何确定按下了键盘上的哪个键? C++

转载 作者:行者123 更新时间:2023-11-30 20:22:56 25 4
gpt4 key购买 nike

如何使用 WINAPI 确定在 C++ 中按下了键盘上的哪个键?

我尝试使用GetAsyncKeyState,但它仅适用于一个 key ,我需要选择哪一个,但我需要获取通过 tcp 发送的 key 代码。

最佳答案

循环每个字符并尝试每个字符:

for (char i = 32; i < 127; i++)
if (GetAsyncKeyState (i))
/* Do whatever you want with that character */;

在示例中,我仅从“”循环到“~”,请根据需要进行修改。

关于c++ - 如何确定按下了键盘上的哪个键? C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37831799/

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