std::ranges::uninitialized_value_construct_n
来自cppreference.com
在标头 <memory> 定义
|
||
调用签名 |
||
template< no-throw-forward-iterator I > requires std::default_initializable<std::iter_value_t<I>> |
(C++20 起) | |
以值初始化在始于 first 的未初始化存储中构造 n 个 std::iter_value_t<I> 类型的对象,如同用
for (; n-- > 0; ++first)
::new (static_cast<void*>(std::addressof(*first)))
std::remove_reference_t<std::iter_reference_t<I>>();
若初始化期间抛出异常,则按未指定顺序销毁已构造的对象。
此页面上描述的函数式实体是 niebloid,即:
实践中,可以作为函数对象,或者用某些特殊编译器扩展实现它们。
参数
first | - | 要初始化的元素范围的起始 |
n | - | 要构造的元素数 |
返回值
对象范围的末尾(即 ranges::next(first, n))。
复杂度
与 n 成线性。
异常
构造目标范围中的元素时抛出的异常,若存在。
注解
若范围的值类型为平凡类型 (TrivialType) 及可复制赋值 (CopyAssignable) ,则实现可以提升 ranges::uninitialized_value_construct_n
的效率,例如用 ranges::fill。
可能的实现
struct uninitialized_value_construct_n_fn { template<no-throw-forward-iterator I> requires std::default_initializable<std::iter_value_t<I>> I operator()(I first, std::iter_difference_t<I> n) const { using T = std::remove_reference_t<std::iter_reference_t<I>>; if constexpr (std::is_trivial_v<T> && std::is_copy_assignable_v<T>) return ranges::fill_n(first, n, T()); I rollback{first}; try { for (; n-- > 0; ++first) ::new (const_cast<void*>(static_cast<const volatile void*> (std::addressof(*first)))) T(); return first; } catch (...) // 回滚:销毁已构造的元素 { for (; rollback != first; ++rollback) ranges::destroy_at(std::addressof(*rollback)); throw; } } }; inline constexpr uninitialized_value_construct_n_fn uninitialized_value_construct_n{}; |
示例
运行此代码
#include <iostream> #include <memory> #include <string> int main() { struct S { std::string m{"█▓▒░ █▓▒░ █▓▒░ "}; }; constexpr int n{4}; alignas(alignof(S)) char out[n * sizeof(S)]; try { auto first{reinterpret_cast<S*>(out)}; auto last = std::ranges::uninitialized_value_construct_n(first, n); auto count{1}; for (auto it{first}; it != last; ++it) std::cout << count++ << ' ' << it->m << '\n'; std::ranges::destroy(first, last); } catch (...) { std::cout << "Exception!\n"; } // 注意对于“平凡类型” uninitialized_value_construct_n 零初始化给定的未初始化内存区域。 int v[]{1, 2, 3, 4, 5, 6, 7, 8}; std::cout << ' '; for (const int i : v) std::cout << i << ' '; std::cout << "\n "; std::ranges::uninitialized_value_construct_n(std::begin(v), std::size(v)); for (const int i : v) std::cout << i << ' '; std::cout << '\n'; }
输出:
1 █▓▒░ █▓▒░ █▓▒░ 2 █▓▒░ █▓▒░ █▓▒░ 3 █▓▒░ █▓▒░ █▓▒░ 4 █▓▒░ █▓▒░ █▓▒░ 1 2 3 4 5 6 7 8 0 0 0 0 0 0 0 0
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | 此算法可能在 const 存储上创建对象 | 保持禁止 |
参阅
在范围所定义的未初始化的内存区域以值初始化构造对象 (niebloid) | |
在范围所定义的未初始化的内存区域以默认初始化构造对象 (niebloid) | |
在起始与计数所定义的未初始化的内存区域以默认初始化构造对象 (niebloid) | |
在起始和计数所定义的未初始化内存区域以值初始化构造对象 (函数模板) |