码迷,mamicode.com
首页 > 其他好文 > 详细

增强for循环

时间:2021-03-01 13:19:47      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:==   public   static   代码   void   min   author   nis   length   

增强for循环

格式:

for(声明语句:表达式){

	//代码

}

    /**
     * @author Administrator
     * @create 2021/2/27 22:46
     */
    public class Demo05 {
        public static void main(String[] args) {
            //定义数组
            int[] num = {10,20,30,40,50};
            //普通for循环 遍历元素
            for (int i = 0; i < num.length; i++) {
                System.out.println(num[i]);
            }
            System.out.println("=====================");
            //增强for循环,遍历数组的元素
            for (int x:num) {
                System.out.println(x);
            }
        }
    }

增强for循环

标签:==   public   static   代码   void   min   author   nis   length   

原文地址:https://www.cnblogs.com/lilizihaoye/p/14457604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!