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++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- CString 到 char* 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
