标准C++中常用的头文件

开始学习C++以来很多东西记不住,故此收集标准C++ 常用头文件。

#include <exception> 异常处理类

#include <list> //STL 线性列表容器

#include <map> //STL映射容器

#include <queue> //STL队列容器

#include <set>  //STL集合容器

#include <vector>//STL动态数组容器

#include <stack>//STL堆栈容器

#include <string>//字符串类

#include <iostream>//基本 输入 输出

原文地址:https://www.cnblogs.com/renxs/p/2371731.html