std::counted_iterator<I>::base
来自 cppreference.com
< cpp | iterator | counted iterator
constexpr const I& base() const& noexcept; |
(1) | (自 C++20 起) |
constexpr I base() &&; |
(2) | (自 C++20 起) |
返回底层基本迭代器。
1) 返回对底层迭代器的引用。
2) 从底层迭代器移动构造返回值。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
1) 对底层迭代器的引用。
2) 从底层迭代器移动构造的迭代器。
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <type_traits> #include <vector> int main() { std::vector<int> v{0, 1, 2, 3, 4}; std::reverse_iterator<std::vector<int>::iterator> reverse{v.rbegin()}; std::counted_iterator counted{reverse, 3}; static_assert(std::is_same< decltype(counted.base()), std::reverse_iterator<std::vector<int>::iterator> const& >{}); std::cout << "Print with reverse_iterator: "; for (auto r = counted.base(); r != v.rend(); ++r) std::cout << *r << ' '; std::cout << '\n'; std::cout << "Print with counted_iterator: "; for (; counted != std::default_sentinel; ++counted) std::cout << counted[0] << ' '; std::cout << '\n'; }
输出
Print with reverse_iterator: 4 3 2 1 0 Print with counted_iterator: 4 3 2
[编辑] 缺陷报告
以下行为更改的缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 3391 | C++20 | base 的 const 版本返回底层迭代器的副本 |
返回引用 |
LWG 3593 | C++20 | base 的 const 版本返回引用,但可能不是 noexcept |
设置为 noexcept |
[编辑] 另请参阅
(C++20) |
访问指向的元素 (公共成员函数) |
(C++20) |
返回到末尾的距离 (公共成员函数) |