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

迭代器---二维数组叠加

时间:2017-04-21 16:34:52      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:二维   list   next   obj   test   int   lis   while   print   

 

//迭代器

@Test
public void demo4() {
ArrayList<Object> list = new ArrayList<>();
list.add(1);
list.add(3);
list.add(2);
list.add(4);
list.add(5);
Iterator<Object> iterator = list.iterator();
while (iterator.hasNext()) {
Object next = iterator.next();
System.out.println(next);
}
}

 

// 二维数组的叠加
@Test
public void demo3() {
int num = 0;
int[][] arr = { { 1, 2, 3, 4 }, { 1, 2, 3 } };
for (int x = 0; x < arr.length; x++) {
for (int y = 0; y < arr[x].length; y++) {
num += arr[x][y];
}
}
System.out.println(num);
}

迭代器---二维数组叠加

标签:二维   list   next   obj   test   int   lis   while   print   

原文地址:http://www.cnblogs.com/quanting112037/p/6744145.html

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