遍历数组的方法
时间: 2023-09-10 20:08:03 浏览: 93
PHP遍历数组的几种方法
5星 · 资源好评率100%
遍历数组的方法有很多种,以下是几种比较常用的方法:
1. for循环遍历数组
```
int[] arr = {1, 2, 3, 4, 5};
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
```
2. for-each循环遍历数组
```
int[] arr = {1, 2, 3, 4, 5};
for (int num : arr) {
System.out.println(num);
}
```
3. 使用Arrays类的toString()方法打印数组
```
int[] arr = {1, 2, 3, 4, 5};
System.out.println(Arrays.toString(arr));
```
4. 使用Stream流遍历数组
```
int[] arr = {1, 2, 3, 4, 5};
Arrays.stream(arr).forEach(num -> System.out.println(num));
```
阅读全文