std::ranges::uninitialized_move, std::ranges::uninitialized_move_result
来自 cppreference.com
定义在头文件 <memory> 中 |
||
调用签名 |
||
template< std::input_iterator I, std::sentinel_for<I> S1, no-throw-forward-iterator O, no-throw-sentinel-for<O> S2 > |
(1) | (自 C++20 起) |
template< ranges::input_range IR, no-throw-forward-range OR > requires std::constructible_from<ranges::range_value_t<OR>, |
(2) | (自 C++20 起) |
辅助类型 |
||
template< class I, class O > using uninitialized_move_result = ranges::in_out_result<I, O>; |
(3) | (自 C++20 起) |
1) 将输入范围
[
ifirst,
ilast)
中的 N 个元素移动到输出范围 [
ofirst,
olast)
(即未初始化的内存区域),其中 N 是 min(ranges::distance(ifirst, ilast), ranges::distance(ofirst, olast)). 该效果等同于
for (; ifirst != ilast && ofirst != olast; ++ofirst, ++ifirst) ::new (static_cast<void*>(std::addressof(*ofirst))) std::remove_reference_t<std::iter_reference_t<O>>(ranges::iter_move(ifirst));
如果在初始化期间抛出异常,则已在
[
ofirst,
olast)
中构造的对象将以未指定的顺序销毁。此外,已移动的 [
ifirst,
ilast)
中的对象将处于有效但未指定的狀態。2) 与 (1) 相同,但使用
in_range
作为第一个范围,out_range
作为第二个范围,就好像使用 ranges::begin(in_range) 作为 ifirst,ranges::end(in_range) 作为 ilast,ranges::begin(out_range) 作为 ofirst,以及 ranges::end(out_range) 作为 olast。此页面上描述的类似函数的实体是 niebloids,即
实际上,它们可能通过函数对象或使用特殊的编译器扩展来实现。
内容 |
[edit] 参数
ifirst, ilast | - | 迭代器-哨兵对,表示要从中移动的元素的输入范围 |
in_range | - | 要从中移动的元素的输入范围 |
ofirst, olast | - | 迭代器-哨兵对,表示要初始化的输出范围 |
out_range | - | 要初始化的输出范围 |
[edit] 返回值
{ifirst + N, ofirst + N}
[edit] 复杂度
与 N 成线性关系。
[edit] 异常
在目标范围中元素构造时抛出的异常(如果有)。
[edit] 备注
实现可以提高 ranges::uninitialized_move
的效率,例如,如果输出范围的值类型是 TrivialType,则可以使用 ranges::copy_n。
[edit] 可能的实现
struct uninitialized_move_fn { template<std::input_iterator I, std::sentinel_for<I> S1, no-throw-forward-iterator O, no-throw-sentinel-for<O> S2> requires std::constructible_from<std::iter_value_t<O>, std::iter_rvalue_reference_t<I>> ranges::uninitialized_move_result<I, O> operator()(I ifirst, S1 ilast, O ofirst, S2 olast) const { O current{ofirst}; try { for (; !(ifirst == ilast or 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; } } template<ranges::input_range IR, no-throw-forward-range OR> requires std::constructible_from<ranges::range_value_t<OR>, ranges::range_rvalue_reference_t<IR>> ranges::uninitialized_move_result<ranges::borrowed_iterator_t<IR>, ranges::borrowed_iterator_t<OR>> operator()(IR&& in_range, OR&& out_range) const { return (*this)(ranges::begin(in_range), ranges::end(in_range), ranges::begin(out_range), ranges::end(out_range)); } }; inline constexpr uninitialized_move_fn uninitialized_move{}; |
[edit] 示例
运行这段代码
#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[]{"Home", "World"}; 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(std::begin(in), std::end(in), 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: "Home" "World" after move, in: "" "" after move, out: "Home" "World"
[edit] 缺陷报告
以下行为变更缺陷报告被追溯应用到以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | 此算法可能会在 const 存储上创建对象 | 一直被禁止 |
[edit] 参见
(C++20) |
将一定数量的对象移动到未初始化的内存区域 (niebloid) |
(C++17) |
将一个范围内的对象移动到未初始化的内存区域 (函数模板) |