Is this a singular iterator and, if so, can I compare it to another one?(这是一个单一的迭代器,如果是,我可以将它与另一个迭代器进行比较吗?)
问题描述
我一直认为单一"迭代器是一个已经默认初始化的迭代器,它们可以作为类似的 sentinel 值:
I always thought that a "singular" iterator was one that has been default-initialised, and these could serve as comparable sentinel values of sorts:
typedef std::vector<Elem>::iterator I;
I start = I();
std::vector<Elem> container = foo();
for (I it = container.begin(), end = container.end(); it != end; ++it) {
if ((start == I()) && bar(it)) {
// Does something only the first time bar(it) is satisfied
// ...
start = it;
}
}
但是这个答案不仅表明我对单数"的定义是错误的,而且我上面的比较是完全违法.
But this answer suggests not only that my definition of "singular" is wrong, but also that my comparison above is totally illegal.
是吗?
推荐答案
显然这适用于 一些 迭代器 - T*
是一个明显的例子 - 但它绝对不是保证 all 迭代器的正确行为.C++11 24.2.1 [iterator.requirements.general] p5:
Obviously this will work for some iterators - T*
being a clear example - but it's definitely not guaranteed correct behavior for all iterators. C++11 24.2.1 [iterator.requirements.general] p5:
奇异值不与任何序列相关联...大多数表达式的结果对于奇异值是未定义的;唯一的异常正在破坏包含奇异值的迭代器,将非奇异值分配给包含奇异值,并且,对于满足DefaultConstructible 要求,使用值初始化的迭代器作为复制或移动操作的来源.
Singular values are not associated with any sequence ... Results of most expressions are undefined for singular values; the only exceptions are destroying an iterator that holds a singular value, the assignment of a non-singular value to an iterator that holds a singular value, and, for iterators that satisfy the DefaultConstructible requirements, using a value-initialized iterator as the source of a copy or move operation.
您可以使用简单的 bool
标志复制您想要的行为:
You can replicate your desired behavior with a simple bool
flag:
std::vector<Elem> container = foo();
bool did_it_already = false;
for (I it = container.begin(), end = container.end(); it != end; ++it) {
if (!did_it_already && bar(it)) {
// Does something only the first time bar(it) is satisfied
// ...
did_it_already = true;
}
}
这篇关于这是一个单一的迭代器,如果是,我可以将它与另一个迭代器进行比较吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:这是一个单一的迭代器,如果是,我可以将它与另一个迭代器进行比较吗?


基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01