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

How to use Iterable interface to traverse all elements in Java

王林
Release: 2023-04-28 12:01:06
forward
1332 people have browsed it

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);
        }
Copy after login

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!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template