STL_头文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL_头文件相关的知识,希望对你有一定的参考价值。
#include <string>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <list>
#include <set>
#include <map>
#include <algorithm> // 算法
#include <numeric> // 算法
#include <functional> // 算法
#include <utility> // for std::pair // 使用容器时,容器的头文件已经包含过该头文件了,∴无需再次显示引用
using namespace std;
#include <locale.h> // for mbstowcs() / wcstombs() // string / wstring 转换
C
以上是关于STL_头文件的主要内容,如果未能解决你的问题,请参考以下文章