I am trying to run the below example provided in book to test the functionality, but getting an error regarding saying "Vector erase iterator outside range". I couldn't figure out what that means.
#include "stdafx.h"
#include <iostream>
#include <vector>
using namespace std;
int main() {
using MyVector = vector<int>;
MyVector newVector = { 0,1,2 };
newVector.push_back(3);
newVector.push_back(4);
MyVector::const_iterator iter = newVector.cbegin() + 1;
newVector.insert(iter, 5);
newVector.erase(iter);
for (auto iter = newVector.begin(); iter != newVector.end(); ++iter) {
cout << *iter << endl;
}
return 0;
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…