日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Linux Unix C 中的curses库——curses.h

發(fā)布時(shí)間:2025/7/14 48 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Linux Unix C 中的curses库——curses.h 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.





打算在Linux下用curses.h寫一個圖形界面,結(jié)果發(fā)現(xiàn)

hello.c:1: fatal error: curses.h: No such file or directory

上網(wǎng)搜索了一下,才發(fā)現(xiàn)是少安裝了curses庫

于是在新得立查找libncurses5-dev,點(diǎn)擊應(yīng)用

寫了一個小程序

#include <curses.h>

int main()
{
? ?initscr();

? ?clear();
? ?move(10, 20);
? ?addstr("Hello world"); ? ?
? ?move(LINES-1, 0);
? ?refresh();
? ?getch();
? ?endwin();

? ?return 0;
}

在終端輸入

gcc -o hello hello.c ?-Incurses

發(fā)現(xiàn)如下錯誤

/tmp/ccsmlmYV.o: In function `main':
hello.c:(.text+0xa): undefined reference to `initscr'
hello.c:(.text+0xf): undefined reference to `stdscr'
hello.c:(.text+0x17): undefined reference to `wclear'
hello.c:(.text+0x1c): undefined reference to `stdscr'
hello.c:(.text+0x34): undefined reference to `wmove'
hello.c:(.text+0x39): undefined reference to `stdscr'
hello.c:(.text+0x51): undefined reference to `waddnstr'
hello.c:(.text+0x56): undefined reference to `LINES'
hello.c:(.text+0x5e): undefined reference to `stdscr'
hello.c:(.text+0x72): undefined reference to `wmove'
hello.c:(.text+0x77): undefined reference to `stdscr'
hello.c:(.text+0x7f): undefined reference to `wrefresh'
hello.c:(.text+0x84): undefined reference to `stdscr'
hello.c:(.text+0x8c): undefined reference to `wgetch'
hello.c:(.text+0x91): undefined reference to `endwin'
collect2: ld returned 1 exit status
在終端輸入

gcc hello.c -o hello -I/usr/include -L/usr/lib -lncurses

編譯成功!


轉(zhuǎn)載于:https://blog.51cto.com/3617486/1210644

總結(jié)

以上是生活随笔為你收集整理的Linux Unix C 中的curses库——curses.h的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。