C++知识点4:for循环的两种写法

1 在数组中
int arr[10];
for(int i=0;i<10;i++) { arr[i]=i; } for(auto &a:arr) { std::cout << a; } 输出的结果就是0—9这十个数。 for(auto &a : arr)中“auto &a”就是变量名就和上一个for循环中的“int i”一样, 与for(int i=0;i cloud;
// 用随机点云填充pointcloud structure
// Fill in the cloud

C++知识点4:for循环的两种写法最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/4850.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>