Bootstrap

Enhanced for循环

Java提供了一种新的实现遍历数组、集合的方式:Enhanced for语句

例如:

int[] arr = new int[100];
for(int e : arr){
	System.out.println(e);
}

Enhanced for语句进行的是只读式遍历,只能遍历访问数组中每个元素,而无法对它们进行赋值操作。

;