盛夏的果实 发表于 2021-7-13 23:27:59

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

#include<iostream>
#include<iterator>
//begin() and end() function in iterator headfile
using namespace std;
int main(void){
int array={
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;
}


文档来源:51CTO技术博客https://blog.51cto.com/u_15302296/3072260
页: [1]
查看完整版本: C++数组begin函数与end函数