std::uninitialized_value_construct_n
来自 cppreference.com
在头文件 <memory> 中定义 |
||
template< class ForwardIt, class Size > ForwardIt uninitialized_value_construct_n( ForwardIt first, Size n ); |
(1) | (自 C++17 起) |
template< class ExecutionPolicy, class ForwardIt, class Size > ForwardIt uninitialized_value_construct_n( ExecutionPolicy&& policy, |
(2) | (自 C++17 起) |
1) 在从 first 开始的未初始化存储中构造 n 个类型为 typename iterator_traits<ForwardIt>::value_type 的对象,如同通过 值初始化,就像这样 for (; n > 0; (void) ++first, --n)
::new (static_cast<void*>(std::addressof(*first)))
typename std::iterator_traits<ForwardIt>::value_type();
::new (static_cast<void*>(std::addressof(*first)))
typename std::iterator_traits<ForwardIt>::value_type();
如果在初始化期间抛出异常,则已构造的对象将以未指定的顺序销毁。
2) 与 (1) 相同,但根据 policy 执行。 仅当
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true 时,此重载才参与重载决议。 |
(直到 C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(自 C++20 起) |
目录 |
[编辑] 参数
first | - | 要初始化的元素范围的开头 |
n | - | 要初始化的元素数 |
policy | - | 要使用的执行策略。 有关详细信息,请参阅 执行策略。 |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 | ||
-通过 ForwardIt 的有效实例进行的递增、赋值、比较或间接寻址不得抛出异常。 |
[编辑] 返回值
对象范围的结尾(即 std::next(first, n))。
[编辑] 复杂度
n 的线性复杂度。
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载报告错误如下
- 如果作为算法的一部分调用的函数的执行抛出异常并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。 对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法未能分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
template<class ForwardIt, class Size> ForwardIt uninitialized_value_construct_n(ForwardIt first, Size n) { using T = typename std::iterator_traits<ForwardIt>::value_type; ForwardIt current = first; try { for (; n > 0 ; (void) ++current, --n) ::new (const_cast<void*>(static_cast<const volatile void*>( std::addressof(*current)))) T(); return current; } catch (...) { std::destroy(first, current); throw; } } |
[编辑] 示例
运行此代码
#include <iostream> #include <memory> #include <string> int main() { struct S { std::string m{"Default value"}; }; constexpr int n{3}; alignas(alignof(S)) unsigned char mem[n * sizeof(S)]; try { auto first{reinterpret_cast<S*>(mem)}; auto last = std::uninitialized_value_construct_n(first, n); for (auto it{first}; it != last; ++it) std::cout << it->m << '\n'; std::destroy(first, last); } catch (...) { std::cout << "Exception!\n"; } // Notice that for "trivial types" the uninitialized_value_construct_n // zero-initializes the given uninitialized memory area. int v[]{1, 2, 3, 4}; for (const int i : v) std::cout << i << ' '; std::cout << '\n'; std::uninitialized_value_construct_n(std::begin(v), std::size(v)); for (const int i : v) std::cout << i << ' '; std::cout << '\n'; }
输出
Default value Default value Default value 1 2 3 4 0 0 0 0
[编辑] 缺陷报告
以下行为更改缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 3870 | C++20 | 此算法可能会在 const 存储上创建对象 | 保持不允许 |
[编辑] 另请参阅
通过 值初始化 在由范围定义的未初始化内存区域中构造对象 (函数模板) | |
通过 默认初始化 在由起始位置和计数定义的未初始化内存区域中构造对象 (函数模板) | |
通过 值初始化 在由起始位置和计数定义的未初始化内存区域中构造对象 (niebloid) |