• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Linux下C/C++帮助手册安装方法 及使用方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

1.  安装C的帮助手册

如果你使用的Linux发行版, 默认没有安装C语言的库函数MAN手册, 使用下面的方法解决:

    # sudo apt-get install manpages

    # sudo apt-get install manpages-de

    # sudo apt-get install manpages-de-dev

    # sudo apt-get install manpages-dev

 

2.  安装C++的帮助手册

一般的Linux发行版不会默认安装C++的帮助手册. 安装方法如下

http://gcc.gnu.org/mirrors.html是一个GCC的镜像站点

进入http://mirrors-us.seosue.com/gcc/站点, 或者其他的可用站点, 找到路径libstdc++/doxygen/, 下载文件libstdc++-api-4.5.2.man.tar.bz2, 或者其他更新的版本.

解压后, 将man/man3下的所有文件拷贝到/usr/share/man/man3/中, 即可.

 

在C++ man pages中查询C++的函数

在Linux下查询命令或函数的使用,通常是这样

man printf

man 3 printf

man cat

但是为了避免造成操作系统、C语言与C++的混淆,目前安装的C++ man pages与上面的查询命令有一些不同,主要是加了命名空间的限定,也就是说用这样的命令 : man cout , 是查询不到的。

正确的方法应该是:

man std::iostream  ,之后再通过搜索/cout,找到cout的说明

也就是说现在的查询命令应该是

man namespace::header  

man 命名空间::头文件


下面是英文原文

How many times did you try on the terminal the following command and got frustrated

$ man cout
No manual entry forcout

If you have decided that there is no way you can find more about cout apart from going to web, then read the article on how to install C++ man pages?

Once you have installed the documentation, you must follow the following method to know more about the function
If you are searching about cout, you know it is part of the namespace std and defined in the header iostream. So to search for cout, you must type

$ man std::iostream

Once the man page is open, you can search for cout.
Similarly for slist related function

$ man __gnu_cxx::slist

Thus the syntax to search any c++ man page is

$ man namespace::header

Note: The man pages are generated using doxygen. You may not much elaborate description like you get for C function.

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#.Net在配置文件中存储连接字符串发布时间:2022-07-14
下一篇:
初窥c++11:lambda函数及其用法发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap