博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在C++ man pages中查询C++的函数
阅读量:6046 次
发布时间:2019-06-20

本文共 1136 字,大约阅读时间需要 3 分钟。

hot3.png

在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 ?

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 headeriostream. 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.

转载于:https://my.oschina.net/u/1024767/blog/313388

你可能感兴趣的文章
软件定义网络带来新的自动化优势和挑战
查看>>
只为那句承诺-大话Promise
查看>>
IaaS市场大整合:云用户喜忧参半
查看>>
Skype-Type:一款通过声音窃取键盘记录的Keylogger工具
查看>>
思科收购安全云新贵Observable网络 计划打造自己的Stealthwatch平台
查看>>
这份文件说,英特尔真的要放弃死气沉沉的PC业务了
查看>>
德国公司研发太阳能公路 能源利用率可达15%
查看>>
小区拆墙后看视频安防拐点
查看>>
光伏贷“变身” 逾20家银行授信松绑
查看>>
外贸英文站该如何合理的优化Google排名
查看>>
科大讯飞陶晓东:智能影像技术如何解决临床问题? | CCF-GAIR 2017
查看>>
为实战而生,科达正式发布猎鹰系列智能分析系统
查看>>
2016年存储市场10大趋势
查看>>
雅虎腰斩自家7项业务:计划裁员400多人
查看>>
至少泄露5亿信息 雅虎已暂禁电子邮件自动转发
查看>>
MySQL 5.7下InnoDB对COUNT(*)的优化
查看>>
国内首次公开僵尸网络主控服务器数量
查看>>
数据分析师常见的十个问题
查看>>
微软继续投资人工智能:与马斯克OpenAI达成云计算合作
查看>>
美国大学开始用大数据来预测学生是否能顺利完成课业
查看>>