TinySTL实现项目(二):空间分配器allocator与全局construct、destroy
本篇文章是TinySTL实现的系列文章的第二篇,介绍了allocator模板类的作用和实现,以及其使用到的全局construct、destroy函数的实现。相关代码依然可以在我的github。
1 allocator 的作用关于为什么要有allocator类知乎上有专门的讨论,这里简单总结一下all
...