如何将ncurses.h添加到在gcc上编译的C ++程序中?


11

我对gcc上的C ++编程完全陌生。我想在控制台的输出中为文本添加颜色。由于linux上没有conio.h,因此我研究发现ncurses.h可以解决问题。现在唯一的问题是我不知道如何下载它然后添加库。有人可以描述一下方法吗?

另外,如果有人可以描述ncurses.h是否比curses.h更好,或者在使用curses.h时我完全错了?

Answers:


13

在ubuntu上:

安装ncurses库(用于开发人员的软件包具有“ -dev”后缀)

sudo apt-get install libncurses5-dev

对于每个软件包,/usr/share/doc/{package name}/您都可以在其中找到文档。

file:///usr/share/doc/libncurses5-dev/html/index.html在浏览器中打开此URL 。

玩得开心。


万一该文档的文档ncurses被证明不够有用,您可以随时拿起Dan Gookin的《 nCurses程序员指南》的副本
Agi Hammerthief,
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.