zoukankan      html  css  js  c++  java
  • 头文件~

     1 #include <assert.h> //设定插入点
     2 #include <ctype.h> //字符处理
     3 #include <errno.h> //定义错误码
     4 #include <float.h> //浮点数处理
     5 #include <fstream.h> //文件输入/输出
     6 #include <iomanip.h> //参数化输入/输出
     7 #include <iostream.h> //数据流输入/输出
     8 #include <limits.h> //定义各种数据类型最值常量
     9 #include <locale.h> //定义本地化函数
    10 #include <math.h> //定义数学函数
    11 #include <stdio.h> //定义输入/输出函数
    12 #include <stdlib.h> //定义杂项函数及内存分配函数
    13 #include <string.h> //字符串处理
    14 #include <strstrea.h> //基于数组的输入/输出
    15 #include <time.h> //定义关于时间的函数
    16 #include <wchar.h> //宽字符处理及输入/输出
    17 #include <wctype.h> //宽字符分类
    18 #include <algorithm> //STL 通用算法
    19 #include <bitset> //STL 位集容器
    20 #include <cctype>
    21 #include <cerrno>
    22 #include <clocale>
    23 #include <cmath>
    24 #include <complex> //复数类
    25 #include <cstdio>
    26 #include <cstdlib>
    27 #include <cstring>
    28 #include <ctime>
    29 #include <deque> //STL 双端队列容器
    30 #include <exception> //异常处理类
    31 #include <fstream>
    32 #include <functional> //STL 定义运算函数(代替运算符)
    33 #include <limits>
    34 #include <list> //STL 线性列表容器
    35 #include <map> //STL 映射容器
    36 #include <iomanip>
    37 #include <ios> //基本输入/输出支持
    38 #include <iosfwd> //输入/输出系统使用的前置声明
    39 #include <iostream>
    40 #include <istream> //基本输入流
    41 #include <ostream> //基本输出流
    42 #include <queue> //STL 队列容器
    43 #include <set> //STL 集合容器
    44 #include <sstream> //基于字符串的流
    45 #include <stack> //STL 堆栈容器
    46 #include <stdexcept> //标准异常类
    47 #include <streambuf> //底层输入/输出支持
    48 #include <string> //字符串类
    49 #include <utility> //STL 通用模板类
    50 #include <vector> //STL 动态数组容器
    51 #include <cwchar>
    52 #include <cwctype>
    53 
    54 using namespace std
    戳这里
  • 相关阅读:
    .net core 项目发布IIS
    .net core 项目连接SQL SERVER数据库报错provider: Named Pipes Provider, error: 40 – Could not open a connection to SQL Server) (Microsoft SQL Server, Error
    网络通讯五层架构入门
    TCP协议学习笔记
    路由器和交换机入门随笔
    互联网通讯的过程
    无论做什么行业,都要有自己的积累!
    C#使用sqlserver2005自动创建数据表和自动添加某个字段索引
    c# treeview在指定名称下添加节点
    测试的行业选择
  • 原文地址:https://www.cnblogs.com/shercy/p/4189158.html
Copyright © 2011-2022 走看看