c – std :: vector的第二个参数

前端之家收集整理的这篇文章主要介绍了c – std :: vector的第二个参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
看着 vector,我意识到,在创建向量时,我从来没有使用过第二个参数.
std::vector<int> myInts; // this is what I usually do
std::vector<int,???> myOtherInts; // but is there a second argument there?

看看上面的链接,它表示它是:

Allocator object to be used instead of constructing a new one.

或者,至于this one

Allocator: Type of the allocator object used to define the storage allocation model. By default,the allocator class template for type T is used,which defines the simplest memory allocation model and is value-independent.

我想这与内存管理有关.但是,我不知道如何使用它.

任何关于这个的指针?

解决方法

默认分配器std :: allocator将处理由std :: vector<> (和别的).每当需要新的分配时,它将从堆中创建新的分配.

通过提供自定义分配器,您可以例如在前面分配一大块内存,然后在需要单独分配时将其分片并发出较小的内存.这将大大增加分配速度,这在游戏中是比较好的,代价是与默认分配器相比增加了复杂性.

一些std类型的实现具有用于少量数据的内部基于堆栈的存储.例如,std :: basic_string<>可能会使用所谓的小型字符串优化,其中只有长度长于一些固定长度的字符串,比如16个字符(只是一个例子!)从分配器获取一个分配,否则使用一个内部数组.

原文链接:https://www.f2er.com/c/113100.html

猜你在找的C&C++相关文章