| コンテナ | |
|---|---|
| <array> | |
| <deque> | |
| <forward_list> | |
| <list> | |
| <map> | |
| <queue> | |
| <set> | |
| <stack> | |
| <unordered_set> | |
| <unordered_map> | |
| <vector> | |
| 一般 | |
| <algorithm> | |
| <any> | |
| <bitset> | |
| <chrono> | |
| <codecvt> | |
| <functional> | |
| <iterator> | |
| <locale> | |
| <memory> | |
| <memory_resource> | |
| <optional> | |
| <ratio> | |
| <scoped_allocator> | |
| <tuple> | |
| <typeindex> | |
| <type_traits> | |
| <utility> | |
| <variant> | |
| 文字列 | |
| <regex> | |
| <string> | |
| <string_view> | |
| ストリームと入出力 | |
| <filesystem> | |
| <fstream> | |
| <ios> | |
| <iostream> | |
| <iosfwd> | |
| <iomanip> | |
| <istream> | |
| <ostream> | |
| <sstream> | |
| <strstream> | - deprecated、sstream 推奨 |
| <streambuf> | |
| 数値処理 | |
| <complex> | |
| <numeric> | |
| <random> | |
| <valarray> | |
| 言語支援 | |
| <exception> | |
| <initializer_list> | |
| <limits> | |
| <new> | |
| <typeinfo> | |
| 診断 | |
| <stdexcept> | |
| <system_error> | |
| スレッド | |
| <atomic> | |
| <condition_variable> | |
| <future> | |
| <mutex> | |
| <shared_mutex> | |
| <thread> | |
| 標準Cライブラリ | |
|
C++において標準Cライブラリのヘッダは、Cと異なった名前になる。 ヘッダ名の末尾から拡張子「.h」を取り除き、先頭に「c」を加える。 例: 「time.h」は、「ctime」 ヘッダ内の宣言は、名前空間「std」の中に置かれるため、 関数や型名には、「std::」を付けて完全修飾することで区別する。 | |
| <cassert> | |
| <cctype> | |
| <cerrno> | |
| <cfenv> | |
| <cfloat> | |
| <climits> | |
| <cmath> | |
| <csetjmp> | |
| <csignal> | |
| <cstdlib> | |
| <cstddef> | |
| <cstdarg> | |
| <cuchar> | |
| <ctime> | |
| <cstdio> | |
| <cstring> | |
| <cwchar> | |
| <cwctype> | |