使用带有堆栈存储的 STL 向量
问题:
找到类似 C 向量使用堆栈存储而不是堆存储的类。
解决方案:
Chromium 的 stack_container.h 提供了一个完全符合要求的 StackVector 类。它的行为几乎与普通向量相同,但在堆栈上分配数据。
用法:
<code class="cpp">char buffer[4096];</code>
<code class="cpp">stack_vector<match_item> matches(buffer, sizeof(buffer));</code>
或者,缓冲区可以由类内部分配:
<code class="cpp">stack_vector<match_item, 256> matches;</code>
<code class="cpp">typedef std::pair<const char *, const char *> comp_list_item; static const size_t comp_list_alloc_size = 128; typedef StackAllocator<comp_list_item, comp_list_alloc_size> comp_list_alloc_type;</code>
<code class="cpp">comp_list_alloc_type::Source match_list_buffer; comp_list_alloc_type match_list_alloc(&match_list_buffer); comp_list_type match_list(match_list_alloc);</code>
<code class="cpp">match_list.reserve(comp_list_alloc_size);</code>
优点:
以上是如何在 C 中使用基于堆栈的向量?的详细内容。更多信息请关注PHP中文网其他相关文章!