Home  >  Article  >  Java  >  How to use Iterable interface to traverse all elements in Java

How to use Iterable interface to traverse all elements in Java

王林
王林forward
2023-04-28 12:01:061257browse

Iterable interface

Traverse the elements in the collection through the iterator 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);
        }

The iterator is used to traverse the elements in the collection. It itself does not have storage capabilities and is dependent on Exists in collections.

The above is the detailed content of How to use Iterable interface to traverse all elements in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete