命名空间
变体
操作

std::make_move_iterator

来自 cppreference.com
< cpp‎ | 迭代器
 
 
迭代器库
迭代器概念
迭代器原语
算法概念和实用程序
间接可调用概念
通用算法需求
(C++20)
(C++20)
(C++20)
实用程序
(C++20)
迭代器适配器
范围访问
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 
定义在头文件 <iterator>
template< class Iter >
std::move_iterator<Iter> make_move_iterator( Iter i );
(自 C++11 起)
(直到 C++17)
template< class Iter >
constexpr std::move_iterator<Iter> make_move_iterator( Iter i );
(自 C++17 起)

make_move_iterator 是一个方便的函数模板,它为给定的迭代器 i 构造一个 std::move_iterator,类型从参数类型推断得出。

内容

[编辑] 参数

i - 要转换为移动迭代器的输入迭代器

[编辑] 返回值

一个 std::move_iterator,可用于从通过 i 访问的元素移动。

[编辑] 可能的实现

template<class Iter>
constexpr std::move_iterator<Iter> make_move_iterator(Iter i)
{
    return std::move_iterator<Iter>(std::move(i));
}

[编辑] 示例

#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <string>
#include <vector>
 
auto print = [](auto const rem, auto const& seq)
{
    for (std::cout << rem; auto const& str : seq)
        std::cout << std::quoted(str) << ' ';
    std::cout << '\n';
};
 
int main()
{
    std::list<std::string> s{"one", "two", "three"};
 
    std::vector<std::string> v1(s.begin(), s.end()); // copy
 
    std::vector<std::string> v2(std::make_move_iterator(s.begin()),
                                std::make_move_iterator(s.end())); // move
 
    print("v1 now holds: ", v1);
    print("v2 now holds: ", v2);
    print("original list now holds: ", s);
}

可能的输出

v1 now holds: "one" "two" "three"
v2 now holds: "one" "two" "three"
original list now holds: "" "" ""

[编辑] 缺陷报告

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

DR 应用于 已发布的行为 正确行为
LWG 2061 C++11 make_move_iterator 不会将数组参数转换为指针 改为转换为

[编辑] 另请参阅

迭代器适配器,其解引用结果为右值
(类模板) [编辑]
(C++11)
将参数转换为 xvalue
(函数模板) [编辑]