std::get_temporary_buffer
来自 cppreference.com
定义在头文件 <memory> 中 |
||
template< class T > std::pair<T*, std::ptrdiff_t> |
(直到 C++11) | |
template< class T > std::pair<T*, std::ptrdiff_t> |
(自 C++11 起) (C++17 中已弃用) (C++20 中已移除) |
|
如果 count 为负或零,则不执行任何操作。
否则,请求为 count 个类型为 T
的相邻对象分配未初始化的连续存储空间。此请求是非绑定式的,实现可能为任意数量的(包括零)类型为 T
的相邻对象分配存储空间。
实现是否支持 超对齐 类型是实现定义的。 |
(自 C++11 起) |
内容 |
[编辑] 参数
count | - | 所需对象的数量 |
[编辑] 返回值
一个 std::pair,成员 first
是分配的存储空间的开头指针,成员 second
是实际分配的存储空间中可以容纳的对象数量。
如果 count <= 0 或分配的存储空间不足以存储单个类型为 T
的元素,则结果的成员 first
为空指针,成员 second
为零。
[编辑] 备注
此 API 最初的设计意图是提供比通用 operator new 更有效的实现,但没有创建此类实现,因此 API 已被弃用并移除。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <memory> #include <string> int main() { const std::string s[] = {"string", "1", "test", "..."}; const auto p = std::get_temporary_buffer<std::string>(4); // requires that p.first is passed to return_temporary_buffer // (beware of early exit points and exceptions), or better use: std::unique_ptr<std::string, void(*)(std::string*)> on_exit(p.first, [](std::string* p) { std::cout << "returning temporary buffer...\n"; std::return_temporary_buffer(p); }); std::copy(s, s + p.second, std::raw_storage_iterator<std::string*, std::string>(p.first)); // has same effect as: std::uninitialized_copy(s, s + p.second, p.first); // requires that each string in p is individually destroyed // (beware of early exit points and exceptions) std::copy(p.first, p.first + p.second, std::ostream_iterator<std::string>{std::cout, "\n"}); std::for_each(p.first, p.first + p.second, [](std::string& e) { e.~basic_string<char>(); }); // same as: std::destroy(p.first, p.first + p.second); // manually reclaim memory if unique_ptr-like technique is not used: // std::return_temporary_buffer(p.first); }
输出
string 1 test ... returning temporary buffer...
[编辑] 缺陷报告
以下行为变更缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 425 | C++98 | 当 count <= 0 时,行为不清楚 | 已明确说明 |
LWG 2072 | C++98 | 不允许分配不足的内存 | 允许 |
[编辑] 另请参阅
(C++17 中已弃用)(C++20 中已移除) |
释放未初始化的存储空间 (函数模板) |
[静态] (C++23) |
通过分配器分配至少与请求大小一样大的存储空间 ( std::allocator_traits<Alloc> 的公共静态成员函数) |