红联Linux门户
Linux帮助

为什么Linux没有 man cout 这样的c++函数呢?

发布时间:2008-04-11 21:17:11来源:红联作者:hanchaoman
如题,怎么才能让Linux也可以man c++下的函数呢 例如 man cout 、man cin等。。
文章评论

共有 1 条评论

  1. Uertbu 于 2008-04-11 21:18:41发表:

    GNU GCC 提供了一份关于 MAN 格式的 C++ 标准库的文档,可以在其镜像点(http://gcc.gnu.org/mirrors.html)中下载。具体的路径是:libstdc++/doxygen/libstdc++-man-xxxxxx.tar.bz2,可找一个最新日期的下载。展开包之后将 man/man3 中的所有文件拷贝到系统上已经存在的一个 man/man3 目录中即可使用。

    可首先 man C++Intro 阅读 Introduction to the GNU libstdc++-v3 man pages。

    对于 cout,你需要知道它是 std::ostream 类的一个对象,所以应该 man std::ostream。