在哪里可以找到所有 C++ 函数的列表?

Where can I find a list to all C++ functions?

学习C++又一次撞墙:函数参考表。我找不到标准 C++ 头文件实现的完整功能列表,只有具有这些功能的网站一一显示,由 类、模板等分隔

我正在寻找与此类似的内容: https://www.ibm.com/docs/en/i/7.4?topic=extensions-standard-c-library-functions-table-by-name

但对于 C++。喜欢:

 - <iostream> std::cin console input 
 - <iostream> std::cout console output
 - <iostream> std::cerr console unbuffered error
 - <iostream> std::clog console buffered error
 - <vector> .begin()
 - <vector> .rbegin()
 - <vector> .end()
 - <vector> .rend()

我正在努力避免重新发明轮子。我的项目涉及 3D 矩阵的计算、文件操作、字符串操作等。如果已经有函数可以执行我想要的操作,我更愿意使用标准 C++ 库,而不是处理指针算术。但首先我需要知道 C++ 标准的能力。

C++ 标准包含标准库中所有名称的列表。

我不认为你会发现它特别有用,有太多东西可以通过阅读索引找到任何东西,有组织的层次结构要好得多。

但无论如何它都在这里:

主要问题已在第 3 条评论中得到解答:

The first four are objects, the latter four are methods on a class. None of them are standalone functions. There are standalone functions in C++, but you haven't listed them. If you're coming from a language like C, then almost everything actually is a function in C. But in C++, we have objects, we have classes, we have instance methods, we have functions, it's more complicated than just "call this thing with these arguments". – Silvio Mayolo

因此,答案并不那么简单。 类 有方法,可以通过相应地调用它们各自的模板来访问这些方法。 了解问题后,补充如下:

https://doc.bccnsoft.com/docs/cppreference_en/all_cpp_functions.html

https://pedrofigueira.pro.br/lista-completa-de-funcoes-c-std-e-stl-all-c-standard-library-and-standard-template-librarys-functions/