gpt4 book ai didi

c++ - C++中的迭代器到底是什么?

转载 作者:行者123 更新时间:2023-12-02 16:10:00 25 4
gpt4 key购买 nike

<分区>

我试图掌握迭代器的概念。我通过以下代码运行了一些测试:

#include <iostream>
#include<map>
using namespace std;

int main(){
map<string,string> mp;//create the map
mp["key"]="value";//create a key/val pair

map<string,string>::iterator it=mp.begin();//create an iterator named it


cout<<(&it)<<" "<<(&*it)<<endl;// 0x7ffeeccd6a18 0x7f9dc5c05970
it++;//moving the current value of the iterator
cout<<(&it)<<" "<<(&*it);// 0x7ffeeccd6a18 0x7ffeeccd6a70
}

根据我的理解,我们可以将迭代器概念化为一个包含值的盒子——我们正在迭代的可迭代对象的值。当我们做“it++;”时并移动迭代器的当前值,我们现在正在访问一个不同的元素,这就是 (&*it) 发生变化的原因。实际的框不会改变,这就是为什么 (&it) 在两种情况下都保持不变(因为我们正在获取迭代器对象的地址)。

我不确定我是否理解正确,所以请告诉我我是否正确,如果我错了请纠正我。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com