增强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(each);
}
循环取值还是可以使用的
增强for循环语法:for(ElementType element :arrayName){};
增强for循环注意事项:
1.在使用增强for循环的时候不支持删除数据
2.在使用增强for循环时,要注意对遍历的集合进行非空判断,不然会出现空指针错误。