C++ Ubuntu 中的手册页

发布于 2024-09-02 16:59:57 字数 63 浏览 4 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

情徒 2024-09-09 16:59:57
sudo apt-get install manpages-dev glibc-doc

也可以在此处查找 STL。

sudo apt-get install manpages-dev glibc-doc

Look here too for STL.

剪不断理还乱 2024-09-09 16:59:57

查看这个项目:https://github.com/Aitjcize/cppman
它从 cplusplus.com 生成联机帮助页

check out this project: https://github.com/Aitjcize/cppman
Which generates manpages from cplusplus.com

薄暮涼年 2024-09-09 16:59:57

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.

一笑百媚生 2024-09-09 16:59:57

您必须安装 manpages-dev 包:

$ sudo apt-get install manpages-dev

You must install manpages-dev package :

$ sudo apt-get install manpages-dev
柠檬色的秋千 2024-09-09 16:59:57

您还可以考虑安装 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文