首页 > 编程语言 > 详细

c++标准库的所有类型

时间:2014-03-16 19:25:07      阅读:473      评论:0      收藏:0      [点我收藏+]

标准库的组成:
    前言就到此为止。从最宏观的层面上看,C++标准库由十个部分组成:语言支持、诊断、通用工具、字符串、本地化、容器、迭代器、通用算法、数值算法和I/O。

头文件组成:
    C++ 标准库一共包含 33 个C++ 头文件:

<algorithm>, <bitset>, <complex>, <deque>, <exception>,  <fstream>,  <functional>, 
<iomanip>, <ios>, <iosfwd>, <iostream>, <istream>, <iterator>,  <limits>,  <list>, 
<locale>, <map>, <memory>, <new>, <numeric>, <ostream>, <queue>, <set>, <sstream>, 
<stack>, <stdexcept>, <streambuf>, <string>, <strstream>,  <typeinfo>,  <utility>, 
<valarray>, <vector>

和 18 个 C的标准库头文件:

<cassert>, <cctype>, <cerrno>, <cfloat>, <ciso646>, <climits>,  <clocale>,  <cmath>, 
<csetjmp>, <csignal>, <cstdarg>, <cstddef>, <cstdio>, <cstdlib>, <cstring>, <ctime>, 
<cwchar>, <cwctype>
 
  类型定义(Types):<cstddef>
    实现特征(Implementation properties ):<limits> , <climits> , <cfloat>
    启动与终止(Start and termination ):<cstdlib>
    动态内存管理(Dynamic memory management ):<new>
    类型认证(Type identification ):<typeinfo>
    异常处理(Exception handling ):<exception>
    其它运行时支持(Other runtime support ):<cstdarg>, <csetjmp> , <ctime> , <csignal> , <cstdlib>

c++标准库的所有类型,布布扣,bubuko.com

c++标准库的所有类型

原文:http://www.cnblogs.com/as3lib/p/3603395.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!