std::ranges::uninitialized_move_n, std::ranges::uninitialized_move_n_result
来自 cppreference.com
定义在头文件 <memory> 中 |
||
调用签名 |
||
template< std::input_iterator I, no-throw-forward-iterator O, no-throw-sentinel-for<O> S > |
(1) | (自 C++20 起) |
辅助类型 |
||
template< class I, class O > using uninitialized_move_n_result = ranges::in_out_result<I, O>; |
(2) | (自 C++20 起) |
将从 ifirst 开始的输入范围中的 N 个元素移动到由范围 [
ofirst,
olast)
指定的未初始化存储中,其中 N 为 min(n, ranges::distance(ofirst, olast)).
效果等同于
for (; n-- > 0 && ofirst != olast; ++ifirst, ++ofirst) ::new (static_cast<void*>(std::addressof(*first))) std::remove_reference_t<std::iter_reference_t<O>>(ranges::iter_move(ifirst));
如果在初始化期间抛出异常,则在 [
ofirst,
olast)
中已构造的对象将以未指定顺序销毁。此外,从 ifirst 开始的输入范围中的对象,如果已经被移动,则将保留在有效但未指定的 state。
此页面上描述的函数式实体是 niebloids,即
实际上,它们可能被实现为函数对象,或者使用特殊的编译器扩展。
内容 |
[编辑] 参数
ifirst | - | 要从中移动元素的输入范围的开始 |
ofirst, olast | - | 表示要初始化的输出范围的迭代器-哨兵对 |
n | - | 要移动的元素数量 |
[编辑] 返回值
{ifirst + N, ofirst + N}.
[编辑] 复杂度
在 N 中是线性的。
[编辑] 异常
在目标范围中元素构造时抛出的异常(如果有)。
[编辑] 注释
如果输出范围的值类型是 TrivialType,则实现可以提高 ranges::uninitialized_move_n
的效率,例如使用 ranges::copy_n。
[编辑] 可能的实现
struct uninitialized_move_n_fn { template<std::input_iterator I, no-throw-forward-iterator O, no-throw-sentinel-for<O> S> requires std::constructible_from<std::iter_value_t<O>, std::iter_rvalue_reference_t<I>> ranges::uninitialized_move_n_result<I, O> operator()(I ifirst, std::iter_difference_t<I> n, O ofirst, S olast) const { O current{ofirst}; try { for (; n-- > 0 && current != olast; ++ifirst, ++current) ::new (const_cast<void*>(static_cast<const volatile void*> (std::addressof(*current)))) std::remove_reference_t< std::iter_reference_t<O>>(ranges::iter_move(ifirst)); return {std::move(ifirst), std::move(current)}; } catch (...) // rollback: destroy constructed elements { for (; ofirst != current; ++ofirst) ranges::destroy_at(std::addressof(*ofirst)); throw; } } }; inline constexpr uninitialized_move_n_fn uninitialized_move_n{}; |
[编辑] 示例
运行这段代码
#include <cstdlib> #include <iomanip> #include <iostream> #include <memory> #include <string> void print(auto rem, auto first, auto last) { for (std::cout << rem; first != last; ++first) std::cout << std::quoted(*first) << ' '; std::cout << '\n'; } int main() { std::string in[]{ "No", "Diagnostic", "Required", }; print("initially, in: ", std::begin(in), std::end(in)); if ( constexpr auto sz = std::size(in); void* out = std::aligned_alloc(alignof(std::string), sizeof(std::string) * sz) ) { try { auto first{static_cast<std::string*>(out)}; auto last{first + sz}; std::ranges::uninitialized_move_n(std::begin(in), sz, first, last); print("after move, in: ", std::begin(in), std::end(in)); print("after move, out: ", first, last); std::ranges::destroy(first, last); } catch (...) { std::cout << "Exception!\n"; } std::free(out); } }
可能的输出
initially, in: "No" "Diagnostic" "Required" after move, in: "" "" "" after move, out: "No" "Diagnostic" "Required"
[编辑] 缺陷报告
以下行为更改的缺陷报告被追溯地应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | 此算法可能会在 const 存储器上创建对象 | 保持禁止 |
[编辑] 另请参阅
(C++20) |
将一系列对象移动到未初始化的内存区域 (niebloid) |
(C++17) |
将一定数量的对象移动到未初始化的内存区域 (函数模板) |