命名空间
变体
操作

std::uninitialized_copy

来自 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)

 
动态内存管理
未初始化内存算法
约束未初始化内存算法
分配器
垃圾回收支持
(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< class InputIt, class NoThrowForwardIt >

NoThrowForwardIt uninitialized_copy( InputIt first, InputIt last,

                                     NoThrowForwardIt d_first );
(1)
template< class ExecutionPolicy, class ForwardIt, class NoThrowForwardIt >

NoThrowForwardIt uninitialized_copy( ExecutionPolicy&& policy,
                                     ForwardIt first, ForwardIt last,

                                     NoThrowForwardIt d_first );
(2) (自 C++17 起)
1) 将范围 [firstlast) 中的元素复制到以 d_first 开头的未初始化内存区域,就好像通过 for (; first != last; ++d_first, (void) ++first)
    ::new (/* VOIDIFY */(*d_first))
        typename std::iterator_traits<NoThrowForwardIt>::value_type(*first);
其中 /* VOIDIFY */(e)
static_cast<void*>(&e)
(直到 C++11)
static_cast<void*>(std::addressof(e))
(自 C++11 起)
如果在初始化期间抛出异常,则已构造的对象将以未指定的顺序销毁。

如果 d_first + [0std::distance(first, last))[firstlast) 重叠,则行为未定义。

(自 C++20 起)
2)(1) 相同,但根据 policy 执行。只有当

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>true 时,此重载才参与重载解析。

(直到 C++20)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>true 时。

(自 C++20 起)

内容

[编辑] 参数

first, last - 要复制的元素的范围
d_first - 目标范围的开始
policy - 要使用的执行策略。有关详细信息,请参见 执行策略
类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。
-
ForwardIt 必须满足 LegacyForwardIterator 的要求。
-
NoThrowForwardIt 必须满足 LegacyForwardIterator 的要求。
-
NoThrowForwardIt 的有效实例进行递增、赋值、比较或间接访问操作不会抛出异常。&* 应用于 NoThrowForwardIt 值必须产生指向其值的类型的指针。(直到 C++11)

[编辑] 返回值

指向最后一个复制元素的下一个元素的迭代器。

[编辑] 复杂度

firstlast 之间的距离上是线性的。

[编辑] 异常

带有名为 ExecutionPolicy 的模板参数的重载会报告以下错误。

  • 如果作为算法的一部分调用的函数的执行抛出异常,并且 ExecutionPolicy标准策略 之一,则调用 std::terminate。对于任何其他 ExecutionPolicy,行为是实现定义的。
  • 如果算法无法分配内存,则会抛出 std::bad_alloc

[编辑] 可能的实现

template<class InputIt, class NoThrowForwardIt>
NoThrowForwardIt uninitialized_copy(InputIt first, InputIt last, NoThrowForwardIt d_first)
{
    using T = typename std::iterator_traits<NoThrowForwardIt>::value_type;
    NoThrowForwardIt current = d_first;
    try
    {
        for (; first != last; ++first, (void) ++current)
            ::new (static_cast<void*>(std::addressof(*current))) T(*first);
        return current;
    }
    catch (...)
    {
        for (; d_first != current; ++d_first)
            d_first->~T();
        throw;
    }
}

[编辑] 示例

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

输出

This_is_an_example_

[编辑] 缺陷报告

以下更改行为的缺陷报告被追溯地应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确的行为
LWG 866 C++98 给定 T 作为 NoThrowForwardIt 的值类型,如果
T::operator new 存在,程序可能是非法的
使用全局替换-
而是使用 new
LWG 2133 C++98 效果描述使用了一个 for 循环,迭代
表达式 ++d_first, ++first,这会导致
operator, 的依赖于参数的查找,
丢弃
一个操作数的值
以禁用该 ADL
LWG 2433 C++11 此算法可能被重载的 operator& 劫持 使用 std::addressof
LWG 3870 C++20 此算法可能会在 const 存储上创建对象 保持不允许

[编辑] 另请参阅

将一定数量的对象复制到未初始化的内存区域
(函数模板) [编辑]
将一系列对象复制到未初始化的内存区域
(类模板)[编辑]