是否可以在 Linux 中使用"man std::find"?

Is it possible to use "man std::find" in linux?

本文关键字:man std find Linux 是否      更新时间:2023-10-16

我正在使用Ubuntu,并且已经安装了libstdc++6-4.7-doc。

但它似乎仅适用于类man

例如
$ man std::vector
$ man std::istream

有效,但是

$ man std::find 

行不通,有什么想法吗?

提前感谢!

改 性:

安装 libstdc++ 后???-.doc

我们可以使用 file:///usr/share/doc/gcc-4.7-base/libstdc++/html/index.html以访问文档。

当你尝试man [something] u'r只是拉起该项目的手册页(基于'man'二进制文件的工作方式)。 由于 find 不起作用,因此很可能没有可供调出的 man find 页面。 如果你真的想从算法库中学习更多的 C++ lib 功能,请访问这里:http://en.cppreference.com/w/cpp/algorithm/find

人并不总是最好的资源(尽管通常是一个很好的起点)

谢谢

ubuntu 上,没有软件包包含 std::find manpage。

如果这些算法手册页对您很重要,请向 ubuntu 提交错误报告或成为志愿者......