This article detailed list of C + + contains the header file name and function description, more suitable for beginners to understand, almost every C + + file start to #include, but most people do not pay attention to #include behind what, the explanation of this article believe will understand the C + + The structure is somewhat helpful.
#include <deque>//stl two-terminal queue container
#include <exception>//Exception handling class
#include <fstream>//File input/output
#include <functional>//stl define an operational function (instead of an operator)
#include <limits>//Defining values constants for various data types
#include <list>//stl Linear list container
#include <map>//stl mapping container
#include <iomanip>//parametric input/output
#include <ios>//Basic input/output support
#include <sstream>//streaming based on strings
#include <stack>//stl Stack container
General algorithm for #include <algorithm>//stl
#include <bitset>//stl bit set container
#include <cctype>//character processing
#include <stdexcept>//Standard Exception class
#include <streambuf>//Bottom input/output support
#include <string>//String class
#include <utility>//stl Generic template classes
#include <vector>//stl dynamic array container
#include <iosfwd>//input/output system use of the predecessor statement
#include <cerrno>//define error codes
#include <clocale>//define localization functions
#include <cmath>//definition of mathematical functions
#include <complex>//plural class
#include <cstdio>//definition of input/output functions
#include <cstdlib>//define miscellaneous functions and memory allocation functions
#include <cstring>//String handling
#include <ctime>//definition of time functions
#include <iostream>//Data flow input/output
#include <istream>//Basic input stream
#include <ostream>//Basic Output flow
#include <queue>//stl Queue container
#include <set>//stl Collection container
#include <cwchar>//wide character processing and input/output
#include <cwctype>//Wide character classification
#include <complex.h>//complex processing
#include <fenv.h>//floating point environment
#include <inttypes.h>//integer format conversion
#include <stdbool.h>//Boolean environment
#include <stdint.h>//Integral environment
#include <tgmath.h>//Common type mathematical macros
Readers can understand the Chinese interpretation, and in C + + program development quickly remember them, for later programming to facilitate.