gpt4 book ai didi

c++ - 关于 vector 、指针和迭代器的问题

转载 作者:可可西里 更新时间:2023-11-01 18:06:26 31 4
gpt4 key购买 nike

同学们,我明天期中考试,我正在看样卷,我对这道题没有把握。任何帮助将不胜感激。

v成为vector<Thingie*> , 这样每个元素 v[i]包含指向 Thingie 的指针.如果pvector<Thingie*>::iterator , 回答以下问题:

  1. 什么类型是 p
  2. 什么类型是 *p
  3. 什么代码提供了实际地址 Thingie
  4. 什么代码提供了实际的Thingie

最佳答案

what type is p?

p类型为 vector<Thingie*>::iterator ,无论碰巧是什么类型。

what type is *p?

*pThingie*& ;也就是说,它是对 vector 中迭代器指向的元素的引用。

what code provides the address of the actual Thingie?

*p ,因为 vector 的元素是指向 Thingie 的指针s 和 *p给出 vector 中元素的引用。

what code provides the actual Thingie?

**p ;也就是说,您取消引用 *p 获得的指针获取指针的引用。

关于c++ - 关于 vector 、指针和迭代器的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2862105/

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