日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 运维知识 > linux >内容正文

linux

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

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





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

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

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

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

寫了一個(gè)小程序

#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)如下錯(cuò)誤

/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的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

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