第1个回答 推荐于2016-04-20
class TestArray {
int[] array;
int length = 0;
public TestArray() {
array = new int[10000];
}
public void addItem(int value) {
if (length > array.length) {
throw new RuntimeException("数组越界");
}
array[++length] = value;
}
public int get(int index) {
return array[index];
}
}本回答被提问者采纳