What does this for(:) mean in Java?

前端 未结 2 887
醉梦人生
醉梦人生 2021-01-17 06:22
package MyTest;

import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;

class Person {
...
}

class Student extends Perso         


        
2条回答
  •  北恋
    北恋 (楼主)
    2021-01-17 06:42

    That's the for each loop syntax, introduced in Java 5.

提交回复
热议问题