比如这样一个例子...
Egg[] eggs = {new Egg(), new Egg()};
for (Egg egg : eggs) {
egg.eat();
}
自己尝试了一下,冒号后面的对象只要不是数组或者Iterable对象,都是会报出编译错误。
Can only iterate over an array or an instance of java.lang.Iterable
然后我通过调试发现For-Each实际上是不断地调用迭代器的hasNext()和next()方法来实现对Collection类遍历的。
那么遍历数组的原理是什么呢?也是在JDK层面实现的吗?
Oui, ce n'est que du sucre syntaxique~ Si vous pouvez foreach, vous devez implémenter l'interface Iterable~
La raison pour laquelle For-Each peut parcourir un tableau est que la JVM le traduit en une boucle For-Index traditionnelle lors de la compilation, c'est-à-dire :
Il s'agit également d'un sucre syntaxique fourni par la JVM pour Java.