get_allocator
语法:
1 |
allocator_type get_allocator(); |
get_allocator()函数返回双向队列的配置器。
1 2 3 4 5 6 |
源代码 /// Get a copy of the memory allocation object. allocator_type get_allocator() const { return _Base::get_allocator(); } |
测试代码
测试结果
The allocated array contains: 0 1 2 3 4