12

一个简单的问题:有没有人知道像cplusplus.com这样的网站(功能和标题组织得很好,包括示例(这对我来说非常重要))并且它是最新的(C++11)。

我问是因为我找不到任何这样的网站。在读取成员函数和类似的东西时,我也无法理解 c++ 标准 PDF。

此外,谷歌搜索特定的东西通常是没用的(如果你不相信我尝试找到一些原子标题示例)。

4

3 回答 3

21

cppreference.com是 C++03 的一个很好的参考。

如今,它在 C++11 功能中变得非常全面。它没有全面覆盖所有内容,但已经非常接近了。

于 2011-04-14T20:00:48.810 回答
5

I surveyed the msdn documentation Ashot refers to. I thought it would be interesting to note which headers are not standard in this list (are extensions), and which C++11 headers are currently missing. Here's the results:

<algorithm>
<allocators>  // not standard
<array>
<atomic>      // missing
<bitset>
<cassert>
<ccomplex>    // missing
<cctype>
<cerrno>
<cfenv>       // missing
<cfloat>
<chrono>      // missing
<ciso646>
<climits>
<clocale>
<cmath>
<codecvt>
<complex>
<condition_variable>  // missing
<csetjmp>
<csignal>
<cstdarg>
<cstdbool>     // missing
<cstddef>
<cstdint>      // missing
<cstdio>
<cstdlib>
<cstring>
<ctgmath>       // missing
<ctime>
<cvt/wbuffer>  // not standard
<cvt/wstring>  // not standard
<cwchar>
<cwctype>
<deque>
<exception>
<forward_list>
<fstream>
<functional>
<future>      // missing
<hash_map>    // not standard
<hash_set>    // not standard
<initializer_list>  // missing
<iomanip>
<ios>
<iosfwd>
<iostream>
<iso646.h>
<istream>
<iterator>
<limits>
<list>
<locale>
<map>
<memory>
<mutex>        // missing
<new>
<numeric>
<ostream>
<queue>
<random>
<ratio>        // missing
<regex>
<scoped_allocator>  // missing
<set>
<sstream>
<stack>
<stdexcept>
<streambuf>
<string>
<strstream>
<system_error>
<thread>        // missing
<tuple>
<type_traits>
<typeindex>     // missing
<unordered_map>
<unordered_set>
<utility>
<valarray>
<vector>
于 2011-04-14T19:32:20.380 回答
3

我认为msdn文档可能对您有用。

它包含已在 VS 2010 中实现的库的文档。

于 2011-04-14T19:04:25.047 回答