可以使用以下方法之一來移除Java數組中的一個元素:
public static int[] removeElement(int[] arr, int index) {
int[] newArr = new int[arr.length - 1];
System.arraycopy(arr, 0, newArr, 0, index);
System.arraycopy(arr, index + 1, newArr, index, arr.length - index - 1);
return newArr;
}
使用示例:
int[] arr = {1, 2, 3, 4, 5};
int indexToRemove = 2;
arr = removeElement(arr, indexToRemove);
System.out.println(Arrays.toString(arr)); // 輸出:[1, 2, 4, 5]
public static int[] removeElement(int[] arr, int index) {
List<Integer> list = new ArrayList<>();
for (int i : arr) {
list.add(i);
}
list.remove(index);
int[] newArr = new int[list.size()];
for (int i = 0; i < list.size(); i++) {
newArr[i] = list.get(i);
}
return newArr;
}
使用示例:
int[] arr = {1, 2, 3, 4, 5};
int indexToRemove = 2;
arr = removeElement(arr, indexToRemove);
System.out.println(Arrays.toString(arr)); // 輸出:[1, 2, 4, 5]
注意:使用ArrayList可能會導致性能損失,因為每次操作都需要進行數組和ArrayList之間的轉換。如果你頻繁地需要移除數組中的元素,建議考慮使用ArrayList代替數組。