C++
应用 | Utilities

std::get_temporary_buffer

STD:得到[医]暂时性[医]缓冲器

Defined in header
template< class T > std::pair< T*, std::ptrdiff_t > get_temporary_buffer( std::ptrdiff_t count (deprecated in C++17)

分配未初始化的连续存储,该存储应足以存储到count相邻类型对象T请求是不具有约束力的,实现可以分配更少或更多的存储所需的资源。count相邻的物体。

参数

count-the desired number of objects

返回值

std::pair保存指向分配存储开始的指针和实际分配的存储中适合的对象数。

如果无法分配内存,或分配的存储空间不足以存储单个类型的元素。Tfirst元素为空指针,second元素是零。

例外

(none)(until C++11)
noexcept specification: noexcept(since C++11)

二次

#include <algorithm> #include <iostream> #include <memory> #include <string> #include <iterator> 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) std::copy(s, s + p.second, std::raw_storage_iterator<std::string*, std::string>(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>( } std::return_temporary_buffer(p.first }

二次

产出:

二次

string 1 test ...

二次

另见

return_temporary_buffer (deprecated in C++17)frees uninitialized storage (function template)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/Memory/GET[医]暂时性[医]缓冲器