码迷,mamicode.com
首页 > 其他好文 > 详细

三种方式遍历ArrayList

时间:2019-08-25 15:40:57      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:string   port   class   增强   --   size   com   for   list集合   

package com.Test01;

import java.util.ArrayList;
import java.util.Iterator;

public class ArrayListDemo {
public static void main(String[] args) {
//创建ArrayList集合对象
ArrayList<Student> array = new ArrayList<Student>();

//创建学生对象 提前定义学生类
Student s1 = new Student("王五",20);
Student s2 = new Student("张五",21);
Student s3 = new Student("李五",22);

//添加学生对象到集合中

array.add(s1);array.add(s2);array.add(s3);

//迭代器遍历集合:集合特有的遍历方式
Iterator<Student> it = array.iterator();
while(it.hasNext()) {
Student s = it.next();
System.out.println(s.getName()+","+s.getAge());
}
System.out.println("------------------------");

//普通for遍历,带有索引
for(int i = 0;i<array.size();i++) {
Student s = array.get(i);
System.out.println(s.getName()+","+s.getAge());
}
System.out.println("-----------------------");

//增强for遍历
for(Student s : array) {
System.out.println(s.getName()+","+s.getAge());
}

}
}

三种方式遍历ArrayList

标签:string   port   class   增强   --   size   com   for   list集合   

原文地址:https://www.cnblogs.com/lsswudi/p/11407915.html

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