查询快:数组是连续的,根据数组首地址、数组元素所占空间、索引可以快速定位 增删慢:删除一个元素要创建新的数组,数组名被赋值为新的数组地址,原来的数组被垃圾回收
int[] intArray = new int[100]; char[] chars = new char[20]; String[] strArray = new String[10];