1. 使用数组的 `length` 属性。
2. 遍历数组并使用计数器递增统计元素个数。
下面是一个示例代码片段,展示了如何使用 `length` 属性和遍历数组来计算元素个数:
public class ArrayLengthExample {public static void main(String[] args) {int[] numbers = {1, 2, 3, 4, 5};// 使用数组的 length 属性获取元素个数int length = numbers.length;System.out.println("数组的元素个数是: " + length);// 使用循环遍历数组并计数int count = 0;for (int number : numbers) {count++;}System.out.println("通过遍历数组计算的元素个数是: " + count);}}
运行上述代码,你将看到输出:
数组的元素个数是: 5通过遍历数组计算的元素个数是: 5
这表明,无论是使用 `length` 属性还是遍历数组,计算出的元素个数是相同的

