std::ranges::uninitialized_copy_n, std::ranges::uninitialized_copy_n_result
来自 cppreference.com
定义在头文件 <memory> 中 |
||
调用签名 |
||
template< std::input_iterator I, no-throw-input-iterator O, no-throw-sentinel-for<O> S > requires std::constructible_from<std::iter_value_t<O>, std::iter_reference_t<I>> |
(1) | (自 C++20) |
辅助类型 |
||
template< class I, class O > using uninitialized_copy_n_result = ranges::in_out_result<I, O>; |
(2) | (自 C++20) |
令 N 为 ranges::min(count, ranges::distance(ofirst, olast)),在输出范围 [
ofirst,
olast)
(一个未初始化的内存区域)中构造 N 个元素,这些元素来自以 ifirst 开头的输入范围中的元素。
输入范围 [
ifirst,
ifirst + count)
必须不与输出范围 [
ofirst,
olast)
重叠。
如果在初始化过程中抛出异常,则已构造的对象将以未指定的顺序销毁。
该函数的效果等同于
auto ret = ranges::uninitialized_copy(std::counted_iterator(ifirst, count), std::default_sentinel, ofirst, olast); return {std::move(ret.in).base(), ret.out};
此页面上描述的函数式实体是 *niebloids*,即
在实践中,它们可以实现为函数对象,或使用特殊的编译器扩展。
内容 |
[编辑] 参数
ifirst | - | 要从中复制元素的范围的开头 |
count | - | 要复制的元素数量 |
ofirst, olast | - | 表示目标范围的迭代器-哨兵对 |
[编辑] 返回值
{ifirst + N, ofirst + N}
[编辑] 复杂度
O(N).
[编辑] 异常
在目标范围中元素构造过程中抛出的异常(如果有)。
[编辑] 备注
如果输出范围的值类型是TrivialType,实现可能会使用例如 ranges::copy_n 来提高 `ranges::uninitialized_copy_n` 的效率。
[编辑] 可能的实现
struct uninitialized_copy_n_fn { template<std::input_iterator I, no-throw-input-iterator O, no-throw-sentinel-for<O> S> requires std::constructible_from<std::iter_value_t<O>, std::iter_reference_t<I>> ranges::uninitialized_copy_n_result<I, O> operator()(I ifirst, std::iter_difference_t<I> count, O ofirst, S olast) const { O current{ofirst}; try { for (; count > 0 && current != olast; ++ifirst, ++current, --count) ranges::construct_at(std::addressof(*current), *ifirst); return {std::move(ifirst), std::move(current)}; } catch (...) // rollback: destroy constructed elements { for (; ofirst != current; ++ofirst) ranges::destroy_at(std::addressof(*ofirst)); throw; } } }; inline constexpr uninitialized_copy_n_fn uninitialized_copy_n{}; |
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <memory> #include <string> int main() { const char* stars[]{"Procyon", "Spica", "Pollux", "Deneb", "Polaris"}; constexpr int n{4}; alignas(alignof(std::string)) char out[n * sizeof(std::string)]; try { auto first{reinterpret_cast<std::string*>(out)}; auto last{first + n}; auto ret{std::ranges::uninitialized_copy_n(std::begin(stars), n, first, last)}; std::cout << '{'; for (auto it{first}; it != ret.out; ++it) std::cout << (it == first ? "" : ", ") << std::quoted(*it); std::cout << "};\n"; std::ranges::destroy(first, last); } catch (...) { std::cout << "uninitialized_copy_n exception\n"; } }
输出
{"Procyon", "Spica", "Pollux", "Deneb"};
[编辑] 另请参阅
(C++20) |
将对象范围复制到未初始化的内存区域 (niebloid) |
(C++11) |
将一定数量的对象复制到未初始化的内存区域 (函数模板) |