java如何遍历数组

761
2023/10/22 9:20:56
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在Java中,可以使用for循环来遍历数组。以下是两种常用的遍历数组的方法:

  1. 使用for循环遍历数组:
int[] array = {1, 2, 3, 4, 5};

for (int i = 0; i < array.length; i++) {
    System.out.println(array[i]);
}
  1. 使用增强for循环(也称为foreach循环)遍历数组:
int[] array = {1, 2, 3, 4, 5};

for (int element : array) {
    System.out.println(element);
}

以上两种方法都可以用来遍历数组,根据具体情况选择合适的方法。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: java的jvm调优方法有哪些