激动花瓣

文章
6
资源
0
加入时间
3年0月9天

Java基础(数组)foreach 增强for

//增强型for,也称为foreach//for(元素的数据类型 临时遍历:数组名){// 处理临时变量//}//增强for的特点是安全,因为它对数组只读访问 遍历用public class ArrayTest { public static void main(String[] args) { int[] arr = new int[10]; for (int i = 0; i < arr.length; i++) { .