recherche

Maison  >  Questions et réponses  >  le corps du texte

java - For-Each能够遍历数组(Array)的原理是什么?

比如这样一个例子...

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层面实现的吗?

迷茫迷茫2813 Il y a quelques jours800

répondre à tous(2)je répondrai

  • 大家讲道理

    大家讲道理2017-04-18 10:55:36

    Oui, ce n'est que du sucre syntaxique~ Si vous pouvez foreach, vous devez implémenter l'interface Iterable~

    répondre
    0
  • 黄舟

    黄舟2017-04-18 10:55:36

    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 :

    for (int i = 0; i < arr.length; i++) {
    ...
    }

    Il s'agit également d'un sucre syntaxique fourni par la JVM pour Java.

    répondre
    0
  • Annulerrépondre