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