在Java中,可以通过以下方法来避免空数组引发的错误:
if (array == null) { throw new IllegalArgumentException("Array is null"); }
int[] array = new int[10];
List<Integer> list = new ArrayList<>(); list.add(10);