Defined in header <iterator> | ||
---|---|---|
template< class Iter > class move_iterator; | (since C++11) |
std::move_iterator
is an iterator adaptor which behaves exactly like the underlying iterator (which must be at least a LegacyInputIterator or model input_iterator
(since C++20), or stronger iterator concept (since C++23)), except that dereferencing converts the value returned by the underlying iterator into an rvalue. If this iterator is used as an input iterator, the effect is that the values are moved from, rather than copied from.
Member type | Definition | ||||
---|---|---|---|---|---|
iterator_type | Iter |
||||
iterator_category |
|
||||
iterator_concept |
|
||||
value_type |
|
||||
difference_type |
|
||||
pointer | Iter |
||||
reference |
|
(C++11) | constructs a new iterator adaptor (public member function) |
(C++11) | assigns another iterator adaptor (public member function) |
(C++11) | accesses the underlying iterator (public member function) |
(C++11)(C++11)(deprecated in C++20) | accesses the pointed-to element (public member function) |
(C++11) | accesses an element by index (public member function) |
(C++11) | advances or decrements the iterator (public member function) |
Member name | Definition |
---|---|
current (private) | the underlying iterator from which base() copies or moves (since C++20), the name is for exposition only |
(C++11)(C++11)(removed in C++20)(C++11)(C++11)(C++11)(C++11)(C++20) | compares the underlying iterators (function template) |
(C++20) | compares the underlying iterator and the underlying sentinel (function template) |
(C++11) | advances the iterator (function template) |
(C++11) | computes the distance between two iterator adaptors (function template) |
(C++20) | computes the distance between the underlying iterator and the underlying sentinel (function template) |
(C++20) | casts the result of dereferencing the underlying iterator to its associated rvalue reference type (function) |
(C++20) | swaps the objects pointed to by two underlying iterators (function template) |
(C++11) | creates a std::move_iterator of type inferred from the argument (function template) |
Feature-test macro | Value | Std | Comment |
---|---|---|---|
__cpp_lib_move_iterator_concept | 202207L | (C++23) | Make std::move_iterator<T*> a random access iterator |
#include <algorithm> #include <iomanip> #include <iostream> #include <iterator> #include <numeric> #include <string> #include <vector> int main() { std::vector<std::string> v{"this", "_", "is", "_", "an", "_", "example"}; auto print_v = [&](auto const rem) { std::cout << rem; for (const auto& s : v) std::cout << std::quoted(s) << ' '; std::cout << '\n'; }; print_v("Old contents of the vector: "); std::string concat = std::accumulate(std::make_move_iterator(v.begin()), std::make_move_iterator(v.end()), std::string()); // An alternative that uses std::move_iterator directly could be: // using moviter_t = std::move_iterator<std::vector<std::string>::iterator>; // std::string concat = std::accumulate(moviter_t(v.begin()), // moviter_t(v.end()), // std::string()); // Starting from C++17, which introduced class template argument deduction, // the constructor of std::move_iterator can be used directly without // template parameters in most cases: // std::string concat = std::accumulate(std::move_iterator(v.begin()), // std::move_iterator(v.end()), // std::string()); print_v("New contents of the vector: "); std::cout << "Concatenated as string: " << quoted(concat) << '\n'; }
Possible output:
Old contents of the vector: "this" "_" "is" "_" "an" "_" "example" New contents of the vector: "" "" "" "" "" "" "" Concatenated as string: "this_is_an_example"
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 2106 | C++11 | dereferencing a move_iterator could return a dangling referenceif the dereferencing the underlying iterator returns a prvalue | returns the object instead |
P2259R1 | C++20 | member iterator_category was always defined | defined only ifstd::iterator_traits<Iter>::iterator_category exists |
(C++11) | creates a std::move_iterator of type inferred from the argument (function template) |
(C++20) | sentinel adaptor for use with std::move_iterator (class template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/iterator/move_iterator