JAVA学习(增强For循环)

4.4 增强for循环

  • jdk5引入,主要用于数组或集合的增强型for循环

  • 语法:

for(声明语句:表达式)
{
    //代码句子 

 

  • 声明语句:声明新的局部变量,该变量类型必须和数组的元素类型匹配。其作用域限定在循环语句块,其值与此时数组元素的值相等

  • 表达式:表达式是要访问的数组名,或者是返回值为数组的方法

package com.kuangshen.struct;
​
public class ForDemo05 {
    public static void main(String[] args) {
        int [] numbers = {10,20,30,40,50};
        //遍历数组的元素
        for (int x:numbers){
            System.out.println(x);
        }
    }
}

 

posted @ 2020-06-18 00:24  黑客的黑  阅读(734)  评论(0编辑  收藏  举报