Linux 中 getch() 和 getche() 的等效函数是什么?
- 2024-09-30 14:02:00
- admin 原创
- 89
问题描述:
我无法在 Linux 中找到 conio.h 的等效头文件。
Linux 中是否有getch()
&功能的选项?getche()
我想制作一个 switch case 基本菜单,用户只需按一个键即可给出选项,流程将向前推进。我不想让用户在按下选择后按 ENTER。
解决方案 1:
#include <termios.h>
#include <stdio.h>
static struct termios old, current;
/* Initialize new terminal i/o settings */
void initTermios(int echo)
{
tcgetattr(0, &old); /* grab old terminal i/o settings */
current = old; /* make new settings same as old settings */
current.c_lflag &= ~ICANON; /* disable buffered i/o */
if (echo) {
current.c_lflag |= ECHO; /* set echo mode */
} else {
current.c_lflag &= ~ECHO; /* set no echo mode */
}
tcsetattr(0, TCSANOW, &current); /* use these new terminal i/o settings now */
}
/* Restore old terminal i/o settings */
void resetTermios(void)
{
tcsetattr(0, TCSANOW, &old);
}
/* Read 1 character - echo defines echo mode */
char getch_(int echo)
{
char ch;
initTermios(echo);
ch = getchar();
resetTermios();
return ch;
}
/* Read 1 character without echo */
char getch(void)
{
return getch_(0);
}
/* Read 1 character with echo */
char getche(void)
{
return getch_(1);
}
/* Let's test it out */
int main(void) {
char c;
printf("(getche example) please type a letter: ");
c = getche();
printf("
You typed: %c
", c);
printf("(getch example) please type a letter...");
c = getch();
printf("
You typed: %c
", c);
return 0;
}
输出:
(getche example) please type a letter: g
You typed: g
(getch example) please type a letter...
You typed: g
解决方案 2:
#include <unistd.h>
#include <termios.h>
char getch(void)
{
char buf = 0;
struct termios old = {0};
fflush(stdout);
if(tcgetattr(0, &old) < 0)
perror("tcsetattr()");
old.c_lflag &= ~ICANON;
old.c_lflag &= ~ECHO;
old.c_cc[VMIN] = 1;
old.c_cc[VTIME] = 0;
if(tcsetattr(0, TCSANOW, &old) < 0)
perror("tcsetattr ICANON");
if(read(0, &buf, 1) < 0)
perror("read()");
old.c_lflag |= ICANON;
old.c_lflag |= ECHO;
if(tcsetattr(0, TCSADRAIN, &old) < 0)
perror("tcsetattr ~ICANON");
printf("%c
", buf);
return buf;
}
printf
如果您不想显示该字符,请删除最后一个。
解决方案 3:
我建议你使用 curses.h 或 ncurses.h,它们实现了包括 getch() 在内的键盘管理例程。你有几个选项可以更改 getch 的行为(即等待或不等待按键)。
解决方案 4:
ncurses库中有一个getch()函数。您可以通过安装ncurses-dev包来获取它。
解决方案 5:
您可以使用curses.h
其他答案中提到的 Linux 中的库。
您可以通过以下方式在 Ubuntu 中安装它:
sudo apt-get 更新
sudo apt-get 安装 ncurses-dev
我从这里获取了安装部分。
解决方案 6:
如上所述,getch()
在ncurses
库中。ncurses 必须初始化,请参见getchar()对上下箭头键返回相同的值 (27)
相关推荐
热门文章
项目管理软件有哪些?
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件
热门标签
云禅道AD