阅读量:0
在Java中,可以使用foreach循环来遍历数组。以下是一个示例:
public class Main { public static void main(String[] args) { int[] numbers = {1, 2, 3, 4, 5}; for (int number : numbers) { System.out.println(number); } } }
在上面的示例中,我们定义了一个整型数组numbers
,然后使用foreach循环遍历数组中的每个元素并打印出来。在foreach循环中,number
是一个临时变量,它依次代表数组中的每个元素的值。
通过使用foreach循环,可以简洁地遍历数组中的元素,而不需要使用传统的for循环来遍历索引。