像cplusplus.com这样的网站,适用于C ++ 11

| 一个简单的问题:是否有人知道像cplusplus.com这样的网站(该网站的功能和标头组织得很好,包括示例(对我来说很重要))并且它是最新的(C ++ 11)。 我问是因为找不到这样的网站。另外,在读取成员函数和类似内容时,我也不了解c ++标准PDF。 谷歌搜索特定的东西通常是没有用的(如果您不相信我尝试找到一些原子标头示例)。     
已邀请:
我调查了Ashot所指的msdn文档。我认为注意到该列表中不标准的标头(是扩展名)以及当前缺少哪些C ++ 11标头会很有趣。结果如下:
<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>
    
cppreference.com是C ++ 03的出色参考。 这些天来,C ++ 11功能变得越来越全面。它没有涵盖所有内容,但是已经接近了。     
我认为msdn文档可能对您有用。 它包含VS 2010中已实现的库的文档。     

要回复问题请先登录注册