C++ 关于iterator的问题
#include<iostream>#include<vector>usingnamespacestd;intmain(){intb[5]={1,2,3,4,5};vec...
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int b[5] = { 1, 2, 3, 4, 5 };
vector<int> a(b, b + 5);
auto p = a.begin();
a.erase(p);
p++;
cin.get();
return 0;
}
上面的程序运行完a.erase(p)语句之后,p会指向2,然后当运行p++语句的时候,提示运行错误:vector iterator not incrementable,这是为什么呢? 展开
#include <vector>
using namespace std;
int main()
{
int b[5] = { 1, 2, 3, 4, 5 };
vector<int> a(b, b + 5);
auto p = a.begin();
a.erase(p);
p++;
cin.get();
return 0;
}
上面的程序运行完a.erase(p)语句之后,p会指向2,然后当运行p++语句的时候,提示运行错误:vector iterator not incrementable,这是为什么呢? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询