“Vector erase iterator outside range” error

2019-09-21 17:02发布

问题:

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;
}

回答1:

After newVector.insert(iter, 5), iter is not valid. That's why insert returns an iterator. Your code should be

iter = newVector.insert(iter, 5);


标签: c++ vector