gpt4 book ai didi

c++ - STL::带有原始指针的迭代器

转载 作者:太空狗 更新时间:2023-10-29 23:39:07 26 4
gpt4 key购买 nike

我想对 C++ 数组使用迭代器,但也想对原始指针使用迭代器。我可以使用静态 vector :

#define SIZE 10
int vect[SIZE] = {0};
vect[3] = 5;
int* p = std::find(std::begin(vect), std::end(vect), 5);
bool success = p != std::end(vect);

如何使用原始指针(可能是堆分配的 vector )来做到这一点?编译器当然不知道数据的大小,所以这段代码

int* pStart = vect;
std::find(std::begin(pStart), std::end(pStart), 5);

给予

error C2784: '_Ty *std::begin(_Ty (&)[_Size])' : 
could not deduce template argument for '_Ty (&)[_Size]' from 'int *'

是否可以让 begin()end() 知道它?

最佳答案

Is it possible to make begin() and end() aware of it?

对指针实现std::begin是可以的,但是实现std::end是不可能的(因为如你所说,大小未知) ,所以它有点毫无意义

但是,您不需要其中任何一个来使用 std::find:

int* p = std::find(pStart, pStart + SIZE, 5);

关于c++ - STL::带有原始指针的迭代器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41962903/

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