C语言捕捉键盘按键信息

Posted by Kalos Aner on December 1, 2020

每个按键都有自己的键值,捕捉按键信息只需要接收从键盘读入的信息,然后再和按键键值比对就行了~

具体实现有两个重要的函数。_kbhit()_getch()。接下来介绍一下他俩各自的功能和用法。

_kbhit()是判断是否有按键信息,返回值为int型(因为C语言里没有bool型),0代表未被点击,非0代表被点击了。 _getch()先看一下百度百科的介绍:

_getch()是编程中所用的函数,这个函数是一个不回显函数,当用户按下某个字符时,函数自动读取,无需按回车,有的C语言命令行程序会用到此函数做游戏,但是这个函数并非标准函数,要注意移植性!

它的返回值也为int型,储存按键键值。

点击这里查看每个按键的键值

两个代码示例:

1
2
3
4
5
6
7
8
9
10
#include <conio.h>
#include <stdio.h>

int main()
{
    while (!_kbhit()) {
        printf("Hit me!! \r");
    }
    printf("\nKey struck was '%c'\n", _getch());
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include<stdio.h>
#include<conio.h>
int main()
{
    int key;
    while (1)
    {
        key = _getch();
        if (key == 27) break;
        if (key > 31 && key < 127) /*如果不是特殊键*/
        {
            printf("按了 %c 键    按 ESC退出!\n", key);
            continue;
        }
        key = _getch();
        if (key == 72) printf("按了 上 键    按 ESC退出!\n");
        if (key == 80) printf("按了 下 键    按 ESC退出!\n");
        if (key == 75) printf("按了 左 键    按 ESC退出!\n");
        if (key == 77) printf("按了 右 键    按 ESC退出!\n");
    }
    return 0;
}

PS:第一次编译可能会有点慢。