命名空间
变体
操作

std::ranges::uninitialized_move, std::ranges::uninitialized_move_result

来自 cppreference.com
< cpp‎ | memory
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
动态内存管理
未初始化内存算法
受限未初始化内存算法
ranges::uninitialized_move
(C++20)
分配器
垃圾收集支持
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)
(C++11)(直到 C++23)



 
定义在头文件 <memory>
调用签名
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>>
uninitialized_move_result<I, O>

uninitialized_move( I ifirst, S1 ilast, O ofirst, S2 olast );
(1) (自 C++20 起)
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>>
uninitialized_move_result<ranges::borrowed_iterator_t<IR>,
                          ranges::borrowed_iterator_t<OR>>

uninitialized_move( IR&& in_range, OR&& out_range );
(2) (自 C++20 起)
辅助类型
template< class I, class O >
using uninitialized_move_result = ranges::in_out_result<I, O>;
(3) (自 C++20 起)
1) 将输入范围 [ifirstilast) 中的 N 个元素移动到输出范围 [ofirstolast)(即未初始化的内存区域),其中 Nmin(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));
如果在初始化期间抛出异常,则已在 [ofirstolast) 中构造的对象将以未指定的顺序销毁。此外,已移动的 [ifirstilast) 中的对象将处于有效但未指定的狀態。
2)(1) 相同,但使用 in_range 作为第一个范围,out_range 作为第二个范围,就好像使用 ranges::begin(in_range) 作为 ifirstranges::end(in_range) 作为 ilastranges::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] 参见

将一定数量的对象移动到未初始化的内存区域
(niebloid)[edit]
将一个范围内的对象移动到未初始化的内存区域
(函数模板) [edit]