1. 程式人生 > >JDK1.5中支持的 for循環的語法

JDK1.5中支持的 for循環的語法

element ray system print for jdk 支持 遍歷 for循環

JDK1.5中支持的 for循環的語法

解答:

for(type element : array) { System.out.println(element)

} type 集合(不僅僅指Collection,也包含普通的數組)中元素的數據類型 element 遍歷到的元素 array 集合對象本身(當然不只是Collection)

JDK1.5中支持的 for循環的語法