每日总结:循环结构(2021.10.4)

增强for循环

for(声明语句 : 表达式) {

//代码句子

}

声明语句:声明新的局部变量,该变量的类型和数组元素的类型匹配,它的值和此时数组元素的值相等。

表达式:数组名

如:

public class Test {
public static void main(String[] args) {
int[]numbers= {1,2,3};
for(int a:numbers) {
a+=a;
System.out.println(a);
}
}
}

输出为

2

4

6

 

上一篇:增强for


下一篇:剑指Offer | day05_查找算法(中等)