java 手工实现ArrayList版本2
发表于:2024-11-28 作者:热门IT资讯网编辑
编辑最后更新 2024年11月28日,手工实现ArrayList第二版:添加了数组扩容、返回索引元素、修改索引元素、删除、检查索引值、抛出异常、返回元素个数尤其注意删除和扩容操作需要用到数组拷贝public class he { p
手工实现ArrayList第二版:
添加了数组扩容、返回索引元素、修改索引元素、删除、检查索引值、抛出异常、返回元素个数
尤其注意删除和扩容操作需要用到数组拷贝
public class he { private int size; private static final int DEFAULT_CAPACITY=10; private Object[] ob; public he()//无参默认构造 { ob=new Object[DEFAULT_CAPACITY]; } public he(int capacity) //有参默认构造 { ob=new Object[capacity]; }public void add(E obs)//添加元素和扩容{ if(size==ob.length) { Object[] newArray=new Object[ob.length+ob.length/2]; System.arraycopy(ob,0, newArray, 0, ob.length); ob=newArray; } ob[size++]=obs;}public E get(int nums) //返回索引元素{ if(nums<0||nums>=size) { throw new RuntimeException("索引错误"); } return (E)ob[nums];}public void set(int index,E obs) //修改元素{ if( index<0||index>=size) { throw new RuntimeException("索引错误2"); } ob[index]=obs;}public void checkIndex(int index) //检查索引异常 { if(index<0||index>=size) { throw new RuntimeException("索引错误3"); }}public void rem(E obs) //通过值移除{ for(int i=0;i=size) { throw new RuntimeException("索引错误4"); } System.arraycopy(ob, index+1,ob, index, ob.length-1-index); ob[--size]=null;}public int size() //返回元素个数 { return size; }public String toString() //重写toString方法,直接打印数组名会打印地址{ StringBuilder s=new StringBuilder(); s.append("["); for(int i=0;i h=new he<>(20); }
}