What is the Iterable interface used for?

前端 未结 5 1160
执念已碎
执念已碎 2020-12-08 10:01

I am a beginner and I cannot understand the real effect of the Iterable interface.

5条回答
  •  春和景丽
    2020-12-08 10:33

    Iterators basically allow for iteration over any Collection.

    It's also what is required to use Java's for-each control statement.

提交回复
热议问题