簡単な質問の1つ:cplusplus.comのようなサイト(関数とヘッダーがうまく整理されていて、例が含まれている(私にとって非常に重要です))と最新のサイト(C ++ 11)を知っている人はいますか?
そのようなサイトが見つからないのでお願いします。また、メンバー関数などを読み取る場合、c++標準のPDFを理解できません。
また、特定のものをグーグルで検索しても役に立たないことがよくあります(信じられない場合は、アトミックヘッダーの例をいくつか見つけてください)。
簡単な質問の1つ:cplusplus.comのようなサイト(関数とヘッダーがうまく整理されていて、例が含まれている(私にとって非常に重要です))と最新のサイト(C ++ 11)を知っている人はいますか?
そのようなサイトが見つからないのでお願いします。また、メンバー関数などを読み取る場合、c++標準のPDFを理解できません。
また、特定のものをグーグルで検索しても役に立たないことがよくあります(信じられない場合は、アトミックヘッダーの例をいくつか見つけてください)。
cppreference.comは、C++03の優れたリファレンスです。
最近、C++11の機能がかなり包括的になっています。すべてを網羅しているわけではありませんが、かなり近づいています。
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>
msdnのドキュメントが役立つと思います。
VS2010ですでに実装されているライブラリのドキュメントが含まれています。