本帖最后由 黑马-张明 于 2013-4-18 21:13 编辑
高级for循环只能对数组和集合遍历的时候使用
for循环又称(计数器式循环)也就是说for循环大都是应用于明确循环次数这样的循环。
普通的for循环: public class test {
public static void main(String[] args) {
int a[]={0,1,2,3,4,5,6,7,8,9};
for(int i=0;i<a.length;i++){
System.out.print(a+" ");
}
}
}
增强型的for循环: public class test {
public static void main(String[] args) {
int a[]={0,1,2,3,4,5,6,7,8,9};
for(int i :a){
System.out.print(i+" ");
}
}
} |