JDK1.5中支持的 for循环的语法
Posted borter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDK1.5中支持的 for循环的语法相关的知识,希望对你有一定的参考价值。
JDK1.5中支持的 for循环的语法
解答:
for(type element : array) { System.out.println(element)
} type 集合(不仅仅指Collection,也包含普通的数组)中元素的数据类型 element 遍历到的元素 array 集合对象本身(当然不只是Collection)
以上是关于JDK1.5中支持的 for循环的语法的主要内容,如果未能解决你的问题,请参考以下文章