std::return_temporary_buffer
来自 cppreference.com
定义在头文件 <memory> 中 |
||
template< class T > void return_temporary_buffer( T* p ); |
(C++17 中已弃用) (C++20 中已删除) |
|
释放由 p 引用的存储空间。
如果 p 不是由早期对 std::get_temporary_buffer 的调用返回的指针值,或已被随后的 std::return_temporary_buffer
调用无效化,则行为未定义。
内容 |
[编辑] 参数
p | - | 指向要释放的存储空间的指针 |
[编辑] 返回值
(无)
[编辑] 异常
不抛出任何异常。
[编辑] 示例
运行此代码
#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 2072 | C++98 | 由 std::get_temporary_buffer 分配的存储空间 可以被多次释放 |
在这种情况下,行为是 未定义的 |
[编辑] 另请参阅
(C++17 中已弃用)(C++20 中已删除) |
获取未初始化的存储空间 (函数模板) |