for循环之增强for循环
增强for循环,属于for循环的一种用法,不同的是增强型for只能用来取值,却不能用来修改数组里面的值//对数组进行遍历int a[] = new int[]{1,2,3,4,5};//常规for循环遍历for int(i = 0; i < a.length; i++) { int each = a[i]; System.out.println(each);}//增强for循环遍历for(int each : a){ System.out.println(e