平常来说什么++v.begin()和--v.end()都是很习惯的事,但是对于++v.end()会出现什么情况呢?
来一个简单的代码
vector<int> v;
++v.end();
在VS2017调试中出现错误
说明end()迭代器是不可加的。
而以下是我遇到的情况复现:
#include <iostream>
#include <set>
using namespace std;
int main() {
set<char> st;
st.insert('a');
st.insert('b');
st.insert('c');
if ((st.find(0)) == st.end()) {
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
getchar();
return 0;
}
同样在调试模式下出现错误。
但是vs和gcc的行为并不相同。在Release模式下vs生成的程序输出结果为YES,而gcc生成的结果为NO。可见++end()这一行为属于未定义的行为,在考虑边界条件时需要避免。