for each循环遍历数组
Posted 天赋不够努力来凑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for each循环遍历数组相关的知识,希望对你有一定的参考价值。
利用for each循环可以不用考虑下标去遍历整个数组。
使用方法:
(1)、一维数组
int [ ]a=new int[10];
for(int element:a)
System.out.println(element);
(2)、二维数组
int [ ][ ]a=new int[3][4];
for(int row:a)
for(int value:row)
System.out.println(value);
以上是关于for each循环遍历数组的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Zoho CRM Deluge 脚本中使用 for each 循环遍历 JSON 数组
for+next()实现数组的遍历及while list each 的使用