首页 > 编程语言 > 详细

for循环05 (遍历数组)

时间:2021-01-06 23:49:18      阅读:43      评论:0      收藏:0      [点我收藏+]
package com.lyc.struct;

public class ForDemo05 {
public static void main(String[] args) {
int[] numbers = {10,20,30,40,50,60} ;

//遍历数组的结果
//把numbers里的结果遍历出来赋值给了x,x就是默认的numbers中的每一个数字,每次循环就从numbers中取值
for (int x : numbers){
System.out.println(x);
}
/*
相当于上面的代码
for(int i = 0; i < 5; i++){
System.out.println(numbers[i]);
}
*/
}
}

for循环05 (遍历数组)

原文:https://www.cnblogs.com/liuyunche/p/14243591.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!