遍历数组

Posted emma-zhu

tags:

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

public class xun {
public static void main(String[] args) {
int[] scores= {1,2,3,5};
int len=scores.length;
//for 循环遍历
for(int i=0;i<len;i++) {
int score=scores[i];
System.out.println(score);
}
//for each 遍历
System.out.println("for each 遍历");
for(int x:scores) {
System.out.println(x);
}
//可变参数 参数的最后一个参数可以是可变参数
System.out.println("可变参数");
print(1,2,3,5);
}
public static void print(int... x) {
int len=x.length;
for(int i=0;i<len;i++) {
System.out.println(x[i]);
}
}
























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

php foreach只能遍历数组么

thymeleaf怎么遍历数组

如何用foreach做数组个数的遍历

Java 如何遍历数组里面的数据?

怎么遍历只有id和pid 的数组排序

php 怎么反向遍历一个数组