Namespaces
Variants

std::ranges:: uninitialized_default_construct_n

From cppreference.net
Memory management library
( exposition only* )
Allocators
Uninitialized memory algorithms
Constrained uninitialized memory algorithms
Memory resources
Uninitialized storage (until C++20)
( until C++20* )
( until C++20* )
( until C++20* )

Garbage collector support (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
(C++11) (until C++23)
定义于头文件 <memory>
调用签名
template < no-throw-forward-iterator I >

requires std:: default_initializable < std:: iter_value_t < I >>
I uninitialized_default_construct_n ( I first,

std:: iter_difference_t < I > count ) ;
(C++20 起)
(C++26 起为 constexpr)

在未初始化内存区域 first + [ 0 , count ) 中通过 默认初始化 构造类型为 std:: iter_value_t < I > 的对象,如同执行 return ranges:: uninitialized_default_construct ( std:: counted_iterator ( first, count ) ,
std:: default_sentinel ) . base ( ) ;

如果在初始化过程中抛出异常,已构造的对象将以未指定的顺序被销毁。

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

目录

参数

first - 要初始化的元素范围的起始位置
count - 要构造的元素数量

返回值

如上所述。

复杂度

count 上呈线性关系。

异常

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

注释

若在默认初始化 std:: iter_value_t < I > 对象时未调用任何非平凡默认构造函数(可通过 std::is_trivially_default_constructible 检测),则实现可以跳过对象构造(且不改变可观测效果)。

注释

功能测试 标准 功能特性
__cpp_lib_raw_memory_algorithms 202411L (C++26) constexpr for 专用内存算法

可能的实现

struct uninitialized_default_construct_n_fn
{
    template<no-throw-forward-iterator I>
        requires std::default_initializable<std::iter_value_t<I>>
    constexpr I operator()(I first, std::iter_difference_t<I> count) const
    {
        auto iter = std::counted_iterator(first, count);
        return ranges::uninitialized_default_construct(iter, std::default_sentinel).base();
    }
};
inline constexpr uninitialized_default_construct_n_fn uninitialized_default_construct_n{};

示例

#include <cstring>
#include <iostream>
#include <memory>
#include <string>
int main()
{
    struct S { std::string m{"█▓▒░ █▓▒░ "}; };
    constexpr int n{4};
    alignas(alignof(S)) char out[n * sizeof(S)];
    try
    {
        auto first{reinterpret_cast<S*>(out)};
        auto last = std::ranges::uninitialized_default_construct_n(first, n);
        auto count{1};
        for (auto it{first}; it != last; ++it)
            std::cout << count++ << ' ' << it->m << '\n';
        std::ranges::destroy(first, last);
    }
    catch (...)
    {
        std::cout << "Exception!\n";
    }
    // 对于标量类型,uninitialized_default_construct_n
    // 通常不会对给定的未初始化内存区域进行零填充。
    constexpr int sample[]{1, 2, 3, 4, 5, 6};
    int v[]{1, 2, 3, 4, 5, 6};
    std::ranges::uninitialized_default_construct_n(std::begin(v), std::size(v));
    if (std::memcmp(v, sample, sizeof(v)) == 0)
    {
        // 可能是未定义行为,等待 CWG 1997 决议:
        // for (const int i : v) { std::cout << i << ' '; }
        for (const int i : sample)
            std::cout << i << ' ';
    }
    else
        std::cout << "Unspecified!";
    std::cout << '\n';
}

可能的输出:

1 █▓▒░ █▓▒░
2 █▓▒░ █▓▒░
3 █▓▒░ █▓▒░
4 █▓▒░ █▓▒░
1 2 3 4 5 6

缺陷报告

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

DR 适用范围 发布时的行为 正确行为
LWG 3870 C++20 该算法可能在 const 存储上创建对象 保持禁止状态

参见

在由范围定义的未初始化内存区域中通过 默认初始化 构造对象
(算法函数对象)
在由范围定义的未初始化内存区域中通过 值初始化 构造对象
(算法函数对象)
在由起始点和计数定义的未初始化内存区域中通过 值初始化 构造对象
(算法函数对象)
在由起始点和计数定义的未初始化内存区域中通过 默认初始化 构造对象
(函数模板)