9

我在 Windows 上编写了这个简单的程序。由于 Windows 有 conio,它工作得很好。

#include <stdio.h>
#include <conio.h>

int main()
{
    char input;

    for(;;)
    {
        if(kbhit())
        {
            input = getch();
            printf("%c", input);
        }
    }
}    

现在我想将它移植到 Linux,curses/ncurses 似乎是正确的方法。我将如何使用这些库代替 conio 来完成相同的任务?

4

1 回答 1

12
#include <stdio.h>
#include <ncurses.h>

int main(int argc, char *argv)
{
    char input;

    initscr(); // entering ncurses mode
    raw();     // CTRL-C and others do not generate signals
    noecho();  // pressed symbols wont be printed to screen
    cbreak();  // disable line buffering
    while (1) {
        erase();
        mvprintw(1,0, "Enter symbol, please");
        input = getch();
        mvprintw(2,0, "You have entered %c", input);
        getch(); // press any key to continue
    }
    endwin(); // leaving ncurses mode    
    return 0;
}

构建程序时不要忘记将 ncurses lib (-L lncurses) 标志链接到 gcc

gcc -g -o sample sample.c -L lncurses

在这里你可以看到 linux 的 kbhit() 实现。

于 2012-09-03T12:28:44.810 回答