java基础之----foreach循环的原理
2020-11-04 本文已影响0人
觉释
List之所以能使用foreach循环遍历,是因为List都是Collection的子接口,而Collection是Iterable的子接口,List的实现类继承了一个AbstractList抽象类,这个抽象类完全实现了Iterator迭代器。
List之所以能使用foreach循环遍历,是因为List都是Collection的子接口,而Collection是Iterable的子接口,List的实现类继承了一个AbstractList抽象类,这个抽象类完全实现了Iterator迭代器。