std::ranges::uninitialized_fill_n
来自 cppreference.com
在头文件 <memory> 中定义 |
||
调用签名 |
||
template< no-throw-forward-range I, class T > requires std::constructible_from<std::iter_value_t<I>, const T&> |
(自 C++20 起) | |
在未初始化的内存区域中构造给定值 x 的 n 个副本,由范围 [
first,
first + n)
指定,就像通过
for (; n--; ++first) { ::new (static_cast<void*>(std::addressof(*first))) std::remove_reference_t<std::iter_reference_t<I>>(x); }
如果在初始化过程中抛出异常,则已构造的对象将以未指定的顺序销毁。
此页面上描述的函数类实体是 *niebloids*,即
在实践中,它们可以实现为函数对象,或使用特殊的编译器扩展。
内容 |
[编辑] 参数
first | - | 要初始化的元素范围的开始 |
n | - | 要构造的元素数量 |
x | - | 用于构造元素的值 |
[编辑] 返回值
一个等于 first + n 的迭代器。
[编辑] 复杂度
与 n 线性相关。
[编辑] 异常
在目标范围中元素的构造期间抛出的异常(如果有)。
[编辑] 注释
如果输出范围的值类型是 TrivialType,则实现可以提高 ranges::uninitialized_fill_n
的效率,例如通过使用 ranges::fill_n。
[编辑] 可能的实现
struct uninitialized_fill_n_fn { template<no-throw-forward-range I, class T> requires std::constructible_from<std::iter_value_t<I>, const T&> I operator()(I first, std::iter_difference_t<I> n, const T& x) const { I rollback{first}; try { for (; n-- > 0; ++first) ranges::construct_at(std::addressof(*first), x); return first; } catch (...) // rollback: destroy constructed elements { for (; rollback != first; ++rollback) ranges::destroy_at(std::addressof(*rollback)); throw; } } }; inline constexpr uninitialized_fill_n_fn uninitialized_fill_n{}; |
[编辑] 示例
运行此代码
#include <iostream> #include <memory> #include <string> int main() { constexpr int n{3}; alignas(alignof(std::string)) char out[n * sizeof(std::string)]; try { auto first{reinterpret_cast<std::string*>(out)}; auto last = std::ranges::uninitialized_fill_n(first, n, "cppreference"); for (auto it{first}; it != last; ++it) std::cout << *it << '\n'; std::ranges::destroy(first, last); } catch (...) { std::cout << "Exception!\n"; } }
输出
cppreference cppreference cppreference
[编辑] 缺陷报告
以下行为改变的缺陷报告被追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | 此算法可能在 const 存储上创建对象 | 保持禁止 |
[编辑] 另请参见
(C++20) |
将对象复制到由范围定义的未初始化内存区域 (niebloid) |
将一个对象复制到一个由开始和计数定义的未初始化内存区域。 (函数模板) |