The C Standard Library
The C++ Standard Library
The C++ STL Library
C++ Programming Resources
Selected Reading
The C++ Standard Library
- C++ Library - <valarray>
- C++ Library - <utility>
- C++ Library - <typeinfo>
- C++ Library - <tuple>
- C++ Library - <thread>
- C++ Library - <string>
- C++ Library - <stdexcept>
- C++ Library - <regex>
- C++ Library - <numeric>
- C++ Library - <new>
- C++ Library - <memory>
- C++ Library - <locale>
- C++ Library - <limits>
- C++ Library - <functional>
- C++ Library - <exception>
- C++ Library - <complex>
- C++ Library - <atomic>
- C++ Library - <streambuf>
- C++ Library - <sstream>
- C++ Library - <ostream>
- C++ Library - <istream>
- C++ Library - <iostream>
- C++ Library - <iosfwd>
- C++ Library - <ios>
- C++ Library - <iomanip>
- C++ Library - <fstream>
- C++ Library - Home
The C++ STL Library
- C++ Library - <iterator>
- C++ Library - <algorithm>
- C++ Library - <vector>
- C++ Library - <unordered_set>
- C++ Library - <unordered_map>
- C++ Library - <stack>
- C++ Library - <set>
- C++ Library - <queue>
- C++ Library - <map>
- C++ Library - <list>
- C++ Library - <forward_list>
- C++ Library - <deque>
- C++ Library - <bitset>
- C++ Library - <array>
C++ Programming Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
C++ Library - <memory>
C++ Library - <memory>
Introduction
It defines general utipties to manage dynamic memory in header.
Allocators
Sr.No. | Allocator & description |
---|---|
1 | It is a default allocator. |
2 | It is an allocator arg. |
3 | It is a allocator arg type. |
4 | It is an allocator allocator traits. |
Managed pointers
Sr.No. | Managed pointers description |
---|---|
1 | It is an automatic Pointer. |
2 | It is a reference to automatic pointer. |
3 | It is a shared pointer. |
4 | It is a weak shared pointer. |
5 | It is an unique pointer. |
6 | It is a default deleter. |
Functions and classes related to shared_ptr
Sr.No. | Functions and classes related to shared_ptr & description |
---|---|
1 | It is used to make shared_ptr. |
2 | It is used to allocate shared_ptr. |
3 | It is a static cast of shared_ptr. |
4 | It is a dynamic cast of shared_ptr. |
5 | It is a const cast of shared_ptr. |
6 | It is used to get deleter from shared_ptr. |
7 | It is a numeric punctuation facet. |
8 | It enables shared_from_this. |