Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
404 views
in Technique[技术] by (71.8m points)

c++ - "Vector erase iterator outside range" error

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...