本文主要是介绍键盘输入curses编程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
纯干货:
#include <unistd.h>
#include <stdlib.h>
#include <curses.h>#define LOCAL_ESCAPE_KEY 27int main()
{int key;initscr();crmode();keypad(stdscr, TRUE);noecho();clear();mvprintw(5,5,"key pad demonstration. press 'q' to quit");while(key != ERR && key != 'q'){move(7,5);clrtoeol();if((key >= 'A' && key <= 'Z') || (key >='a') && (key <= 'z')){printw("Key was %c",(char)key);}else{switch(key){case LOCAL_ESCAPE_KEY: prin
这篇关于键盘输入curses编程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!