關於C++的尾後叠代器:++end()
阿新 • • 發佈:2018-02-28
可見 find ase urn get 說明 clu stream 未定義
平常來說什麽++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()這一行為屬於未定義的行為,在考慮邊界條件時需要避免。
關於C++的尾後叠代器:++end()