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

Java 中 for each

时间:2017-03-17 14:50:57      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:next   循环   for   遍历   iterator   public   迭代器   element   二维   

格式:

for(type element: array)

  {

        System.out.println(element);

  }

 

 

//ex:
{ public static void main(String[] args) { int[] arr = {1, 2, 3, 4, 5}; System.out.println("----foreach---"); for(int element:arr) { System.out.println(element); } System.out.println("----二维数组的foreach------"); //遍历二维数组 int[][] arr2 = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}} ; for(int[] row : arr2) { for(int element : row) { System.out.println(element); } } //以三种方式遍历集合List List<String> list = new ArrayList<String>(); list.add("a"); list.add("b"); list.add("c"); System.out.println("----方式1---"); //第一种方式,普通for循环 for(int i = 0; i < list.size(); i++) { System.out.println(list.get(i)); } System.out.println("----方式2---"); //第二种方式,使用迭代器 for(Iterator<String> iter = list.iterator(); iter.hasNext();) { System.out.println(iter.next()); } System.out.println("----方式3---"); //第三种方式,使用增强型的for循环 for(String str: list) { System.out.println(str); } } }

 

Java 中 for each

标签:next   循环   for   遍历   iterator   public   迭代器   element   二维   

原文地址:http://www.cnblogs.com/nhz-M/p/6565650.html

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