-2

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;
}
Lightness Races in Orbit
  • 369,052
  • 73
  • 620
  • 1,021

1 Answers1

0

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);
Pete Becker
  • 72,338
  • 6
  • 72
  • 157