1. 概述
STL Allocator是STL的内存管理器,也是最低调的部分之一,你可能使用了3年stl,但却不知其为何物。
STL标准如下介绍Allocator
the STL includes some low-level mechanisms for allocating and deallocating memory. Allocators are very specialized, and you can safely ignore them for almost all purposes. Allocators encapsulate allocation and deallocation of memory. They provide a low-level interface that permits efficient allocation of many small objects; different allocator types represent different schemes for memory management.
Allocator就在我们身边,通常使用STL的方式:
#include
std::vector
本质上,调用的是:
#include
std::vector
std::allocator就是一个简单的Allocator
2. 为什么需要了解Allocator
项目中遇到的两个case
1)memory高位
线上使用vector保存待处理的数据,在停服务追数据的过程中,由于vector::clear并不释放内存,造成内存始终处于高位。
参考:http://blog.csdn.net/yfkiss/article/details/6537234
2)多线程使用vector、map
使用map保存状态,在多线程环境下,出现性能问题
在实际使用STL的过程中,会遇到很多问题,需要了解STL Allocator
3. 使用
针对不同的应用场合,STL中实现了不同的Allocator,如下(gcc-3.4:http://www.cs.huji.ac.il/~etsman/Docs/gcc-3.4-base/libstdc++/html/20_util/allocator.html):
__gnu_cxx::new_allocator
__gnu_cxx::malloc_allocator
__gnu_cxx::debug_allocator
__gnu_cxx::__pool_alloc
__gnu_cxx::__mt_alloc
__gnu_cxx::bitmap_allocato A high-performance allocator that uses a bit-map to keep track of the used and unused memory locations
例如,在多线程环境下,可以使用:
#include4.一个简单的Allocator实现
我们可以实现自己的allocator
5. 参考文献
STL源码剖析
http://gcc.gnu.org/onlinedocs/libstdc++/manual/ext_allocators.html
http://www.codeguru.com/cpp/cpp/cpp_mfc/stl/article.php/c4079
http://blog.163.com/dengminwen@126/blog/static/870226720097189486788/