foreach是for语言的简化版,只是一种遍历的形式,并非是一个关键字。
for(元素类型 元素变量:遍历对象)
{
执行代码;
}
int[]scores={1,2,3,4,5,6,8};
for(int score:scores){System.out.print(score)}
注:score是我们在执行代码中操作的变量名,逐个输出。
foreach是for语言的简化版,只是一种遍历的形式,并非是一个关键字。
for(元素类型 元素变量:遍历对象)
{
执行代码;
}
int[]scores={1,2,3,4,5,6,8};
for(int score:scores){System.out.print(score)}
注:score是我们在执行代码中操作的变量名,逐个输出。