gpt4 book ai didi

c++ - 了解 vector 中的.begin和.end

转载 作者:行者123 更新时间:2023-12-01 15:05:20 25 4
gpt4 key购买 nike

我正在从this post学习 vector ,它们以迭代器开始。他们定义.begin和.end如下:

begin() – Returns an iterator pointing to the first element in the vector

end() – Returns an iterator pointing to the theoretical element that follows the last element in the vector



然后,他们给出了以下代码片段,我添加了第3个for循环来表达我的问题。
#include<iostream>
#include<vector>

int main() {
std::vector <int> g1; //creating a vector
for (int i = 1; i <= 3; i++){
g1.push_back(i);
}
std::cout << "Output of beginning and end values: ";
for (auto i = g1.begin(); i != g1.end(); i++) {
std::cout << *i << " ";
}
std::cout << "\nOutput of beginning and end addresses: ";
for (auto i = g1.begin(); i != g1.end(); i++) {
std::cout << &i << " ";
}
//"Output of beginning and end values: 1 2 3"
//"Output of beginning and end addresses: 0105FB0C 0105FB0C 0105FB0C"
return 0;
}

我的困惑是 i的地址保持不变,但是 i的值已更改。 i*是不是意味着 i刚刚被取消引用?因此,如果地址不变,则必须更改 i的值,以便它可以具有不同的值。我想可能会使迭代器与指针混淆。我知道 auto基本上是类型推断,仅此而已。

所以我的问题是,如果 vector 中每个元素的地址都相同, i的值将如何变化?

最佳答案

&i是局部变量i的地址。这不会改变。 *i取消引用迭代器,并返回 vector 中该元素的值。 &*i将返回一个指向 vector 中元素的指针。

所以你循环应该使用

std::cout << &*i << " ";

查看地址更改。

关于c++ - 了解 vector 中的.begin和.end,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59867350/

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