通过迭代器 Iterable 来进行遍历集合中的元素:
System.out.println("(迭代器)学生信息:"); Iterator it=students.iterator(); while(it.hasNext()){ Student s=(Student)it.next(); System.out.println("编号:" + s.ID + "\t\t\t姓名:" + s.name + "\t\t\t年龄:" + s.age + "\t\t\t性别:" + s.gender); }
迭代器用来遍历集合中的元素,本身是不具备有存储能力的,是依赖于集合而存在的。
以上是Java中如何使用Iterable接口遍历所有元素的详细内容。更多信息请关注PHP中文网其他相关文章!