vector源码(参考STL源码--侯捷)-----空间分配导致迭代器失效

Posted ybf-yyj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vector源码(参考STL源码--侯捷)-----空间分配导致迭代器失效相关的知识,希望对你有一定的参考价值。

vector源码(参考STL源码--侯捷)-----空间分配导致迭代器失效
#include<bits/stdc++.h>
using namespace std;

int main(){
    vector<int> v(3,3);
    vector<int>::iterator it=v.begin();
    cout<<v.size()<<"  "<<v.capacity()<<endl;//3 3
    int k=0;
    while(it!=v.end())
    {
        cout<<*it<< ;
        k++;
        ++it;
    }
    cout<<endl;
    cout<<"k: "<<k<<endl;
    v.push_back(7);
    v.push_back(8);
    v.push_back(9);
    v.push_back(5);
    cout<<v.size()<<"  "<<v.capacity()<<endl;//7 12
    while(it!=v.end())
    {
        cout<<*it<< ;
        k++;
        ++it;
    }
    cout<<endl;
    cout<<"k: "<<k<<endl;
    return 0;
}

 

输出:

技术分享图片

可以发现因为空间分配的原因,该迭代器已经失效了!!!!,详细参考 源码2 。

以上是关于vector源码(参考STL源码--侯捷)-----空间分配导致迭代器失效的主要内容,如果未能解决你的问题,请参考以下文章

vector源码(参考STL源码--侯捷)-----空间分配导致迭代器失效

list源码1(参考STL源码--侯捷):list节点迭代器数据结构

list源码4(参考STL源码--侯捷):transfersplicemergereversesort

stl源码剖析 为啥要使用仿函数

list源码2(参考STL源码--侯捷):constructorpush_backinsert

《STL 源码剖析》学习笔记之容器vector