std::ranges::uninitialized_move, std::ranges::uninitialized_move_result
来自cppreference.com
<tbody>
</tbody>
| 在标头 <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 起) (C++26 起为 constexpr) |
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 起) (C++26 起为 constexpr) |
| 辅助类型 |
||
template< class I, class O > using uninitialized_move_result = ranges::in_out_result<I, O>; |
(3) | (C++20 起) |
设 N 为 ranges::min(ranges::distance(ifirst, ilast), ranges::distance(ofirst, olast))。
1) 如同用以下方式将范围
[ifirst, ilast) 中的 N 个元素复制到未初始化内存区域 [ofirst, olast)(符合条件时使用移动语义):
for (; ifirst != ilast && ofirst != olast; ++ofirst, (void)++ifirst)
::new (voidify(*ofirst))
std::remove_reference_t<std::iter_reference_t<O>>(ranges::iter_move(ifirst));
return {std::move(ifirst), ofirst};
如果在初始化期间抛出异常,那么以未指定顺序销毁
[ofirst, olast) 中已构造的元素。而且 [ifirst, ilast) 中已被移动的元素被置于合法但未指定的状态。2) 等价于
return ranges::uninitialized_move(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_move 的效率,例如用 ranges::copy_n。
| 功能特性测试宏 | 值 | 标准 | 功能特性 |
|---|---|---|---|
__cpp_lib_raw_memory_algorithms |
202411L |
(C++26) | constexpr 的特化内存算法, (1,2)
|
可能的实现
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>>
constexpr ranges::uninitialized_move_result<I, O>
operator()(I ifirst, S1 ilast, O ofirst, S2 olast) const
{
using ValueType = std::remove_reference_t<std::iter_reference_t<O>>;
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 (...) // 回滚:析构已构造的元素
{
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>>
constexpr 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{};
|
示例
运行此代码
#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("起初, 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("移动后, in:", std::begin(in), std::end(in));
print("移动后, out:", first, last);
std::ranges::destroy(first, last);
}
catch (...)
{
std::cout << "异常!\n";
}
std::free(out);
}
}
可能的输出:
起初, in:"Home" "World"
移动后, in:"" ""
移动后, out:"Home" "World"
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
| 缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
|---|---|---|---|
| LWG 3870 | C++20 | 此算法可能在 const 存储上创建对象
|
保持禁止 |
参阅
(C++20) |
移动若干对象到未初始化内存 (算法函数对象) |
(C++17) |
移动范围中对象到未初始化内存 (函数模板) |