Java的增强for循环
Posted 高数考了59
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java的增强for循环相关的知识,希望对你有一定的参考价值。
增强型for循环只能用来取值,却不能用来修改数组里的值
1 public class HelloWorld { 2 public static void main(String[] args) { 3 int values [] = new int[]{18,62,68,82,65,9}; 4 //常规遍历 5 for (int i = 0; i < values.length; i++) { 6 int each = values[i]; 7 System.out.println(each); 8 } 9 10 //增强型for循环遍历 11 for (int each : values) { 12 System.out.println(each); 13 } 14 15 } 16 }
以上是关于Java的增强for循环的主要内容,如果未能解决你的问题,请参考以下文章