标签:int cti 语法 数组 type system 1.5 bsp 集合
JDK1.5中支持的 for循环的语法
解答:
for(type element : array) { System.out.println(element)
} type 集合(不仅仅指Collection,也包含普通的数组)中元素的数据类型 element 遍历到的元素 array 集合对象本身(当然不只是Collection)
标签:int cti 语法 数组 type system 1.5 bsp 集合
原文地址:https://www.cnblogs.com/borter/p/9552674.html