std::uninitialized_fill_n
定义于头文件 <memory>
|
||
(1) | ||
template< class ForwardIt, class Size, class T > void uninitialized_fill_n( ForwardIt first, Size count, const T& value ); |
(C++11 前) | |
template< class ForwardIt, class Size, class T > ForwardIt uninitialized_fill_n( ForwardIt first, Size count, const T& value ); |
(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) | (C++17 起) |
1) 复制给定值
value
到始于 first
的未初始化内存区域的首 count
个元素,如同以
for (; n--; ++first) ::new (static_cast<void*>(std::addressof(*first))) typename std::iterator_traits<ForwardIt>::value_type(x);
若初始化期间抛异常,则以未指定顺序销毁已构造的对象。
2) 同 (1) ,但按照
policy
执行。此重载仅若 std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> (C++20 前)std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> (C++20 起) 为 true 才参与重载决议。参数
first | - | 要初始化的元素范围起始 |
count | - | 要构造的元素数量 |
value | - | 构造元素所用的值 |
类型要求 | ||
-ForwardIt 必须满足遗留向前迭代器 (LegacyForwardIterator) 的要求。
| ||
-通过 ForwardIt 合法实例的自增、赋值、比较或间接均不可抛异常。
|
返回值
(无) |
(C++11 前) |
指向最后复制的元素后一位置元素的迭代器。 |
(C++11 起) |
复杂度
与 count
成线性。
异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 若作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
为标准策略之一,则调用 std::terminate 。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 若算法无法分配内存,则抛出 std::bad_alloc 。
可能的实现
template< class ForwardIt, class Size, class T > ForwardIt uninitialized_fill_n(ForwardIt first, Size count, const T& value) { typedef typename std::iterator_traits<ForwardIt>::value_type Value; ForwardIt current = first; try { for (; count > 0; ++current, (void) --count) { ::new (static_cast<void*>(std::addressof(*current))) Value(value); } return current; } catch (...) { for (; first != current; ++first) { first->~Value(); } throw; } } |
示例
运行此代码
#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
参阅
复制一个对象到以范围定义的未初始化内存区域 (函数模板) |