linux 下使用 man 查看 c++ 库函数

ubuntu 默认的是没有 c++ 库函数的 man page 的,需要我们额外安装。

方法:

# sudo apt-get install manpages manpages-dev manpages-posix manpages-posix-dev

# sudo apt-get install libstdc++6-4.2-doc

现在执行命令 man std::vector 可以看到如下效果:

linux 下使用 man 查看 c++ 库函数_第1张图片

参考

http://stackoverflow.com/questions/6173012/how-do-you-man-cpp-functions
http://stackoverflow.com/questions/5293737/where-are-the-man-pages-for-c
https://jrharshath.wordpress.com/2008/11/30/where-are-man-pages-installed-in-ubuntu/

你可能感兴趣的:(2,C/C++,相关)