数组迭代器

Posted 郭志凯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组迭代器相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <iterator>

int main()
{
    int array[10] = {0,1,2,3,4,5,-6,-7,8,9};
    int* pbeg = std::begin(array) , *pend = std::end(array);
    while(pbeg != pend && *pbeg >=0)
    {
        std::cout<<*pbeg<<std::endl;
        ++pbeg ;
    }
}

 

 

以上是关于数组迭代器的主要内容,如果未能解决你的问题,请参考以下文章

检查数组中是不是存在迭代器时,array.includes 不起作用[重复]

c# 数组迭代器简介 基于unity2018.3.8f1

C++:用于超重对象的方便的基于指针数组的值迭代器

处理数组和 ES6 迭代器的混合

C++ Primer阅读笔记:vector|迭代器|数组

C++ Primer阅读笔记:vector|迭代器|数组