zoukankan      html  css  js  c++  java
  • 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 转换

    #include <string>
    #include <vector>
    #include <deque>
    #include <queue>
    #include <stack>
    #include <list>
    #include <set>
    #include <map>
    
    #include <algorithm>    // 算法
    #include <numeric>    // 算法
    #include <functional>    // 算法
    
    using namespace std;

    #include <locale.h> // for mbstowcs() / wcstombs()

    C

  • 相关阅读:
    ATM
    Python不同目录间模块调用
    Python跨目录调程序
    Python软件目录结构规范
    进程的创建-multiprocessing
    进程
    多任务版udp聊天器
    死锁
    互斥锁
    同步
  • 原文地址:https://www.cnblogs.com/cppskill/p/5222062.html
Copyright © 2011-2022 走看看