码迷,mamicode.com
首页 > 编程语言 > 详细

Java中的foreach

时间:2015-02-06 09:22:35      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

int[] arr = {1,2,3,4,5,6,8,5,9};

//常规for循环
for (int i = 0; i < arr.length; i++) {
  System.out.print(arr[i]+" ");
}

System.out.println();
//JDK5 之后的高级for循环,它只能使用在仅仅为了遍历数组
//或集合,如果需要做更复杂的操作,还是需要常规for循环
for (int i : arr) {
  System.out.print(i+" ");

Java中的foreach

标签:

原文地址:http://www.cnblogs.com/ghostqf/p/4276331.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!