std::ranges::uninitialized_copy, std::ranges::uninitialized_copy_result

来自cppreference.com
< cpp‎ | memory
 
 
内存管理库
(仅用于阐述*)
分配器
未初始化内存算法
受约束的未初始化内存算法
内存资源
未初始化存储 (C++20 前)
(C++17 弃用)
(C++17 弃用)
垃圾收集器支持 (C++23 前)
(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_reference_t<I>>
uninitialized_copy_result<I, O>

    uninitialized_copy( I ifirst, S1 ilast, O ofirst, S2 olast );
(1)(C++20 起)
(C++26 起为 constexpr)
template< ranges::input_range IR, no-throw-forward-range OR >

    requires std::constructible_from<ranges::range_value_t<OR>,
                                     ranges::range_reference_t<IR>>
uninitialized_copy_result<ranges::borrowed_iterator_t<IR>,
                          ranges::borrowed_iterator_t<OR>>

    uninitialized_copy( IR&& in_range, OR&& out_range );
(2)(C++20 起)
(C++26 起为 constexpr)
辅助类型
template< class I, class O >
using uninitialized_copy_result = ranges::in_out_result<I, O>;
(3)(C++20 起)

Nranges::min(ranges::distance(ifirst, ilast), ranges::distance(ofirst, olast))

1) 如同用以下方式将范围 [ifirstilast) 中的 N 个元素复制到未初始化内存区域 [ofirstolast)

for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst)
    ::new (voidify(*ofirst)) std::remove_reference_t<std::iter_reference_t<O>>(*ifirst);
return {std::move(ifirst), ofirst};

如果初始化中抛出了异常,那么以未指定的顺序销毁已构造的对象。
如果 [ofirstolast)[ifirstilast) 有重叠,那么行为未定义。
2) 等价于 return ranges::uninitialized_copy(ranges::begin(in_range), ranges::end(in_range),
                                  ranges::begin(out_range), ranges::end(out_range));

此页面上描述的函数式实体是算法函数对象(非正式地称为 niebloid),即:

参数

ifirst, ilast-要复制的源元素范围的迭代器-哨位对
in_range-要复制的元素 range
ofirst, olast-目标元素范围的迭代器-哨位对
out_range-目标 range

返回值

如上所述。

复杂度

𝓞(N)

异常

构造目标范围中的元素时抛出的任何异常。

注解

如果输出范围的值类型是平凡类型 (TrivialType) ,那么实现可能提升 ranges::uninitialized_copy 的效率。

功能特性测试标准功能特性
__cpp_lib_raw_memory_algorithms202411L(C++26)constexpr特化内存算法, (1,2)

可能的实现

struct uninitialized_copy_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_reference_t<I>>
    constexpr ranges::uninitialized_copy_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)
                ranges::construct_at(std::addressof(*current), *ifirst);
            return {std::move(ifirst), std::move(current)};
        }
        catch (...) // 回滚:销毁已构造的元素
        {
            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>,
    constexpr ranges::range_reference_t<IR>>
        ranges::uninitialized_copy_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_copy_fn uninitialized_copy{};

示例

#include <cstdlib>
#include <iomanip>
#include <iostream>
#include <memory>
#include <string>
 
int main()
{
    const char* v[]{"This", "is", "an", "example"};
 
    if (const auto sz{std::size(v)};
        void* pbuf = std::aligned_alloc(alignof(std::string), sizeof(std::string) * sz))
    {
        try
        {
            auto first{static_cast<std::string*>(pbuf)};
            auto last{first + sz};
            std::ranges::uninitialized_copy(std::begin(v), std::end(v), first, last);
 
            std::cout << "{";
            for (auto it{first}; it != last; ++it)
                std::cout << (it == first ? "" : ", ") << std::quoted(*it);
            std::cout << "};\n";
 
            std::ranges::destroy(first, last);
        }
        catch (...)
        {
            std::cout << "uninitialized_copy 异常\n";
        }
        std::free(pbuf);
    }
}

输出:

{"This", "is", "an", "example"};

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告应用于出版时的行为正确行为
LWG 3870C++20此算法可能会在 const 存储中创建对象保持禁止

参阅

复制若干对象到未初始化内存
(算法函数对象)
复制范围中对象到未初始化内存
(函数模板)