在线文档教程
C++
应用 | Utilities

std::uninitialized_fill_n

STD::未初始化[医]填充[医]n

Defined in header
(1)
template< class ForwardIt, class Size, class T > void uninitialized_fill_n( ForwardIt first, Size count, const T& value (until C++11)
template< class ForwardIt, class Size, class T > ForwardIt uninitialized_fill_n( ForwardIt first, Size count, const T& value (since C++11)
template< class ExecutionPolicy, class ForwardIt, class Size, class T > ForwardIt uninitialized_fill_n( ExecutionPolicy&& policy, ForwardIt first, Size count, const T& value (2)(since C++17)

1%29拷贝给定的值value第一次count元素开始的未初始化内存区域中的first好像

二次

for (; n--; ++first) ::new (static_cast<void*>(std::addressof(*first))) typename std::iterator_traits<ForwardIt>::value_type(x

二次

如果在初始化期间抛出异常,则该函数没有任何效果。

2%29与%281%29相同,但根据policy此重载不参与过载解决,除非std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>是真的

参数

first-the beginning of the range of the elements to initialize
count-number of elements to construct
value-the value to construct the elements with

类型要求

---。

-不通过有效的Forward实例进行增量、赋值、比较或间接转换,否则会引发异常。

返回值

(none)(until C++11)
Iterator to the element past the last element copied.(since C++11)

复杂性

线性在count...

例外

带有名为ExecutionPolicy报告错误如下:

  • 如果执行作为算法一部分调用的函数,则引发异常ExecutionPolicy是其中之一标准政策,,,std::terminate叫做。对于任何其他人ExecutionPolicy,行为是由实现定义的。

  • 如果算法不能分配内存,std::bad_alloc被扔了。

可能的实施

模板<类向前,类大小,类T>未初始化[医]填充[医]n%28 ForwardIt First,Size Count,Const T&value%29[医]性状<ForwardIt>*价值[医]类型值;前进当前=先;尝试{表示%28;计数>0;++当前,%28void%29-计数%29{::新的%28静态[医]铸造<空隙%2A>%28 std::地址%28%2A当前%29%29%29值%28值%29}返回电流}捕获%28%29{%28;第21%=当前;++第29%{第一->值%28%29;}抛;}}

*。

二次

#include <algorithm> #include <iostream> #include <memory> #include <string> #include <tuple> int main() { std::string* p; std::size_t sz; std::tie(p, sz) = std::get_temporary_buffer<std::string>(4 std::uninitialized_fill_n(p, sz, "Example" for (std::string* i = p; i != p+sz; ++i) { std::cout << *i << '\n'; i->~basic_string<char>( } std::return_temporary_buffer(p }

二次

产出:

二次

Example Example Example Example

二次

另见

uninitialized_fillcopies an object to an uninitialized area of memory, defined by a range (function template)

© cppreference.com

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

http://en.cpPreference.com/w/cpp/Memory/uninitiated[医]填充[医]n