在Java中,數組的長度是在創建數組時確定的,無法在運行時改變。數組的長度由數組中元素的數量決定,可以通過以下方式定義數組長度:
int[] numbers = new int[5]; // 定義一個包含5個整數的數組
String[] names = new String[3]; // 定義一個包含3個字符串的數組
int[] numbers = {1, 2, 3, 4, 5};
int arrayLength = numbers.length; // 獲取數組的長度,結果為5
ArrayList<Integer> numbers = new ArrayList<>();
numbers.add(1);
numbers.add(2);
numbers.add(3);
int arrayLength = numbers.size(); // 獲取數組的長度,結果為3
總之,數組的長度在創建數組時確定,并且無法在運行時改變。