C++ Ubuntu 中的手册页
在 Ubuntu linux 中,我无法获得任何 C++ 关键字的手册页。我可以安装某种软件包来解决这个问题吗?
In Ubuntu linux I can't get any man pages for C++ keywords. Is there some kind of package I can install to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
也可以在此处查找 STL。
Look here too for STL.
查看这个项目:https://github.com/Aitjcize/cppman
它从 cplusplus.com 生成联机帮助页
check out this project: https://github.com/Aitjcize/cppman
Which generates manpages from cplusplus.com
libstdc++6-4.4-doc 还将安装 STL 的手册页,而不仅仅是 HTML 文档。 manpages-posix-dev 包也非常好用。
The libstdc++6-4.4-doc will install the man pages for STL too, not only the HTML doc. The manpages-posix-dev package is also really good to have.
您必须安装 manpages-dev 包:
You must install manpages-dev package :
您还可以考虑安装 libstdc++6-4.4-doc,它以 HTML 格式安装从 doxygen 注释生成的完整 C++ 库文档(您可以在
/usr/share/doc/libstdc++6 中找到它) -4.4-doc/libstdc++/html/index.html
,我认为scrollkeeper对其进行了索引)。当安装的 g++ 版本发生变化时,请记住安装更新的软件包。You could also consider installing libstdc++6-4.4-doc, which installs the full C++ library documentation in HTML format, generated from the doxygen comments (you can find it in
/usr/share/doc/libstdc++6-4.4-doc/libstdc++/html/index.html
, and I think that scrollkeeper indexes it). Remember to install the updated package when the installed g++ version changes.