有没有像 man、info、perldoc 等方法来获取有关 C++ 的帮助信息?

Is there a way like man, info, perldoc etc to get help info about C++?

我对 Bash、Perl 和 R 有一些经验。我发现使用这三种编程语言获取帮助信息非常方便。但是,当我开始使用 C++ 时,我找不到这样的帮助系统。我错过了什么?或者,根本就没有这样的系统?

另一个困扰我的问题是C++库。如何开始学习一个新的图书馆?有没有方便的方法获取new class的所有成员函数?或者,我们是否必须阅读头文件才能获得 class?

的方法?

谢谢!

如果你有使用bash的经验,那么你一定熟悉unixlinux系统,你可以使用man 2 fwrite之类的man命令来查找标准fwrite 函数的 c 库手册。

然而,对于c-plus-plus,手册默认不在man目录中(据我所知)。 您可以从“http://gcc.gnu.org/mirrors.html' to use manual for c++ standard library. Or try to use dash on Mac computer or Velocity on Windows platform instead. Besides, reading the manual from 'http://en.cppreference.com/w/”下载 c-plus-plus 手册,这是我最喜欢的方式。