operator-(std::counted_iterator)
来自 cppreference.com
< cpp | iterator | counted iterator
template< std::common_with<I> I2 > friend constexpr std::iter_difference_t<I2> operator-( |
(自 C++20 起) | |
计算两个迭代器适配器之间的距离。
如果 x 和 y 不指向同一个序列的元素,则行为未定义。也就是说,必须存在某个 n,使得 std::next(x.base(), x.count() + n) 和 std::next(y.base(), y.count() + n) 指向同一个元素。
此函数模板对普通的 无限定 或 限定查找 不可見,只有当 std::counted_iterator<I> 是参数的关联类时,才能通过 参数相关查找 找到它。
内容 |
[编辑] 参数
x, y | - | 要计算差值的迭代器适配器 |
[编辑] 返回值
y.count() - x.count()
[编辑] 备注
由于长度是递减的,而不是递增的,因此 operator- 中底层表达式的参数顺序被反转,即 y 是lhs,x 是rhs。
[编辑] 示例
运行此代码
#include <initializer_list> #include <iterator> int main() { static constexpr auto v = {1, 2, 3, 4, 5, 6}; constexpr std::counted_iterator<std::initializer_list<int>::iterator> it1{v.begin(), 5}, it2{it1 + 3}, it3{v.begin(), 2}; static_assert(it1 - it2 == -3); static_assert(it2 - it1 == +3); // static_assert(it1 - it3 == -3); // UB: operands of operator- do not refer to // elements of the same sequence }
[编辑] 另请参阅
推进或递减迭代器 (公有成员函数) | |
(C++20) |
推进迭代器 (函数模板) |
计算到末尾的带符号距离 (函数模板) |