| Header File | Contents and Purpose |
| <utility> | Contains classes and functions that are used by many standard library header files. |
| <vector>, <list>, <deque>, <queue>, <set>, <map>, <stack>, <bitset> | The header files contain classes that implement the standard library containers. Containers store data during a program's execution. |
| <functional> | Contains classes and functions used by algorithm of the standard library. |
| <memory> | Contains classes and function used by the library to allocate memory to the standard library contains. |
| <iterator> | Contains classes for manipulating data in the standard library containers. |
| <algorithm> | Contains functions for manipulating data in the standard library containers. |
| <exception>, <stdexcept> | This header files contains classes that are used for exception handling. |
| <string> | Contains the definitions of class string from the standard library. |
| <sstream> | Contains function prototypes for functions that perform input from string in memory and output to string in memory. |
| <locale> | Contains classes and functions normally used by stream processing to process data in the natural form for different languages (e.g., monetary formats, sorting strings, character presentation.) |
| <limits> | Contains a class for defining the numerical data type limits on each computer platform. |
| <typeinfo> | Contains classes for run-time type identification (determining data types at execution time). |
Saturday, January 29, 2011
New header files included in ANSI C++.
Labels:
Header Files (C++)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment