评论

收藏

[C++] C++数组begin函数与end函数

编程语言 编程语言 发布于:2021-07-13 23:27 | 阅读数:569 | 评论:0

#include<iostream>
#include<iterator>
//begin() and end() function in iterator headfile
using namespace std;
int main(void){
int array[4]={
0,1,2,3
};
int *start=begin(array);
int *end_p=end(array);
//end()返回数组最后一个元素的地址的后一个地址,也就是多一个地址
for(start;start<end_p;start++){
cout<<*start<<endl;
}
return 0;
}

关注下面的标签,发现更多相似文章