Java中的容器(集合)之ArrayList源码解析
程序员文章站
2022-06-09 11:30:28
1、ArrayList源码解析 源码解析: 如下源码来自JDK8(如需查看ArrayList扩容源码解析请跳转至《Java中的容器(集合)》第十条):。 (以上所有内容皆为个人笔记,如有错误之处还望指正。) ......
1、arraylist源码解析
源码解析:
- 如下源码来自jdk8(如需查看arraylist扩容源码解析请跳转至《java中的容器(集合)》第十条):。
package java.util; import java.util.function.consumer; import java.util.function.predicate; import java.util.function.unaryoperator; import sun.misc.sharedsecrets; //其中实现了randomaccess接口表示支持随机访问 public class arraylist<e> extends abstractlist<e> implements list<e>, randomaccess, cloneable, java.io.serializable { //序列号 private static final long serialversionuid = 8683452581122892189l; /** * 默认初始容量 */ private static final int default_capacity = 10; /** * 共享的空数组实例(用于空实例) * 当arraylist(int initialcapacity),arraylist(collection<? extends e> c)中的容量等于0的时候使用 */ private static final object[] empty_elementdata = {}; /** * 共享的空数组实例(用于默认大小的空实例) * 将其与empty_elementdata区分开来,主要是为了知道第一次添加元素的时候需要扩容多少 * 用于arraylist()构造器 */ private static final object[] defaultcapacity_empty_elementdata = {}; /** * arraylist保存有序元素的数组 * arrayllist容量为数组容量 * 任何空数组都使用 elementdata == defaultcapacity_empty_elementdata * 当第一次添加元素的时候其容量将会扩容至 default_capacity(10) */ transient object[] elementdata; // non-private to simplify nested class access /** * arraylist的大小(包含元素的数量) * @serial */ private int size; /** * 带指定容量参数的构造器,如果元素数量较大的话,可以使用此构造器,防止频繁扩容造成的性能损失 */ public arraylist(int initialcapacity) { //如果传入值大于0,则创建一个该容量大小的数组。 if (initialcapacity > 0) { this.elementdata = new object[initialcapacity]; } else if (initialcapacity == 0) { //否则如果传入值等于0,则创建默认空数组 this.elementdata = empty_elementdata; } else { //如果小于0则抛出异常 throw new illegalargumentexception("illegal capacity: "+ initialcapacity); } } /** * 默认构造函数,其初始容量为10(注意,这里一开始其实是一个空数组,只是当add时才会进行扩容至10的操作,一定程度上减小了内存消耗。) */ public arraylist() { this.elementdata = defaultcapacity_empty_elementdata; } /** * 构造一个包含指定集合元素的列表,元素顺序由集合的迭代器所返回。 */ public arraylist(collection<? extends e> c) { //集合转数组 elementdata = c.toarray(); //指定集合含有元素 if ((size = elementdata.length) != 0) { // c.toarray可能不会返回object[] (see 6260652) //使用反射进行运行时判断elementdata是否属于object[] if (elementdata.getclass() != object[].class) //拷贝数组 elementdata = arrays.copyof(elementdata, size, object[].class); } else { // 由空数组代替 this.elementdata = empty_elementdata; } } /** * 修改arraylist容量为list的当前大小 * 一个应用可以使用此操作来最小化一个arraylist的存储 */ public void trimtosize() { modcount++; //如果当前数组元素个数小于数组容量 if (size < elementdata.length) { //没有元素返回空数组,否则返回元素个数的数组。 elementdata = (size == 0) ? empty_elementdata : arrays.copyof(elementdata, size); } } /** * 如果有必要去增加arraylist的容量,请确保它至少可以容纳由最小容量参数指定的元素数量 * @param mincapacity 所需的最小容量 */ public void ensurecapacity(int mincapacity) { //默认最小容量,空数组以及默认大小10 int minexpand = (elementdata != defaultcapacity_empty_elementdata) // any size if not default element table ? 0 // larger than default for default empty table. it's already // supposed to be at default size. : default_capacity; //如果传入容量大于最小容量,则进行扩容 if (mincapacity > minexpand) { ensureexplicitcapacity(mincapacity); } } private static int calculatecapacity(object[] elementdata, int mincapacity) { //如果elementdata为默认空数组,则比较传入值与默认值(10),返回两者中的较大值 //elementdata为默认空数组指的是通过arraylist()这个构造器创建的arraylist对象 if (elementdata == defaultcapacity_empty_elementdata) { return math.max(default_capacity, mincapacity); } //返回传入值 return mincapacity; } private void ensurecapacityinternal(int mincapacity) { //先通过calculatecapacity方法计算最终容量,以确认实际容量 ensureexplicitcapacity(calculatecapacity(elementdata, mincapacity)); } private void ensureexplicitcapacity(int mincapacity) { modcount++; // overflow-conscious code //如果最终确认容量大于数组容量,则进行grow()扩容 if (mincapacity - elementdata.length > 0) grow(mincapacity); } /** * 可分配数组最大大小 */ private static final int max_array_size = integer.max_value - 8; /** * 增加arraylist的容量,以确保它至少可以容纳由最小容量参数指定的元素数量 * @param mincapacity 所需的最小容量 */ private void grow(int mincapacity) { // overflow-conscious code //oldcapacity表示旧容量 int oldcapacity = elementdata.length; //newcapacity表示新容量,计算规则为旧容量+旧容量的0.5,即旧容量的1.5倍。如果超过int的最大值会返回一个负数。 //oldcapacity >> 1表示右移一位,对应除以2的1次方。 int newcapacity = oldcapacity + (oldcapacity >> 1); //如果新容量小于最小容量,则将最小容量赋值给新容量(有时手动扩容可能也会返回<0,对应方法为ensurecapacity()) if (newcapacity - mincapacity < 0) newcapacity = mincapacity; //如果新容量大于max_array_size,则执行hugecapacity(mincapacity)返回对应值 if (newcapacity - max_array_size > 0) newcapacity = hugecapacity(mincapacity); // mincapacity is usually close to size, so this is a win: //复制旧数组到新容量数组中,完成扩容操作 elementdata = arrays.copyof(elementdata, newcapacity); } private static int hugecapacity(int mincapacity) { //如果最小容量超过了int的最大值,mincapacity会是一个负数,此时抛出内存溢出错误 if (mincapacity < 0) // overflow throw new outofmemoryerror(); //比较最小容量是否大于max_array_size,如果是则返回integer.max_value,否则返回max_array_size return (mincapacity > max_array_size) ? integer.max_value : max_array_size; } /** * 返回列表元素数 */ public int size() { return size; } /** * 如果列表不包含元素,返回true */ public boolean isempty() { return size == 0; } /** * 如果列表包含指定元素,返回true */ public boolean contains(object o) { //返回此列表中指定元素第一次出现的索引,如果列表中不包含指定元素,则为-1 return indexof(o) >= 0; } /** * 返回此列表中指定元素第一次出现的索引,如果列表中不包含指定元素,则为-1 */ public int indexof(object o) { if (o == null) { for (int i = 0; i < size; i++) if (elementdata[i]==null) return i; } else { for (int i = 0; i < size; i++) if (o.equals(elementdata[i])) return i; } return -1; } /** * 返回此列表中指定元素最后一次出现的索引,如果列表中不包含指定元素,则为-1 */ public int lastindexof(object o) { if (o == null) { for (int i = size-1; i >= 0; i--) if (elementdata[i]==null) return i; } else { for (int i = size-1; i >= 0; i--) if (o.equals(elementdata[i])) return i; } return -1; } /** * 返回arraylist实例的一个浅拷贝,列表中的元素不会被拷贝 */ public object clone() { try { arraylist<?> v = (arraylist<?>) super.clone(); v.elementdata = arrays.copyof(elementdata, size); v.modcount = 0; return v; } catch (clonenotsupportedexception e) { // this shouldn't happen, since we are cloneable throw new internalerror(e); } } /** * 以正确的顺序(从第一个到最后一个元素)返回一个包含此列表中所有元素的数组。 * 返回的数组将是“安全的”,因为该列表不保留对它的引用。 (换句话说,这个方法必须分配一个新的数组)。 * 因此,调用者可以*地修改返回的数组。 此方法充当基于阵列和基于集合的api之间的桥梁。 */ public object[] toarray() { return arrays.copyof(elementdata, size); } /** * 以正确的顺序返回一个包含此列表中所有元素的数组(从第一个到最后一个元素); * 返回的数组的运行时类型是指定数组的运行时类型。 如果列表适合指定的数组,则返回其中。 * 否则,将为指定数组的运行时类型和此列表的大小分配一个新数组。 * 如果列表适用于指定的数组,其余空间(即数组的列表数量多于此元素),则紧跟在集合结束后的数组中的元素设置为null 。 *(这仅在调用者知道列表不包含任何空元素的情况下才能确定列表的长度。) */ @suppresswarnings("unchecked") public <t> t[] toarray(t[] a) { if (a.length < size) //创建一个新的运行时类型数组,内容为arraylist数组的 return (t[]) arrays.copyof(elementdata, size, a.getclass()); system.arraycopy(elementdata, 0, a, 0, size); if (a.length > size) a[size] = null; return a; } // 位置访问操作 @suppresswarnings("unchecked") e elementdata(int index) { return (e) elementdata[index]; } /** * 返回此列表中指定位置的元素 */ public e get(int index) { //检查索引是否越界 rangecheck(index); return elementdata(index); } /** * 用指定元素替换列表中的指定位置的元素 */ public e set(int index, e element) { //检查索引是否越界 rangecheck(index); e oldvalue = elementdata(index); elementdata[index] = element; return oldvalue; } /** * 将指定元素追加到数组末尾 */ public boolean add(e e) { //添加之前先确认是否需要扩容 ensurecapacityinternal(size + 1); // increments modcount!! //新加入的元素是添加在了数组的末尾,随后数组size自增。 elementdata[size++] = e; return true; } /** * 插入指定元素到此列表中的指定位置 * 先调用 rangecheckforadd 对index进行界限检查;然后调用 ensurecapacityinternal 方法保证capacity足够大; * 再将从index开始之后的所有成员后移一个位置;将element插入index位置;最后size加1。 */ public void add(int index, e element) { rangecheckforadd(index); ensurecapacityinternal(size + 1); // increments modcount!! //自己复制自己 system.arraycopy(elementdata, index, elementdata, index + 1, size - index); elementdata[index] = element; size++; } /** * 将列表中指定位置的元素移除,后续所有元素移到左端(从他们的索引中减去一个) */ public e remove(int index) { rangecheck(index); modcount++; e oldvalue = elementdata(index); int nummoved = size - index - 1; if (nummoved > 0) system.arraycopy(elementdata, index+1, elementdata, index, nummoved); elementdata[--size] = null; // 清理工作交给gc return oldvalue; } /** * 从列表中移除第一次出现的指定元素,如果不存在,则不更改 */ public boolean remove(object o) { if (o == null) { for (int index = 0; index < size; index++) if (elementdata[index] == null) { fastremove(index); return true; } } else { for (int index = 0; index < size; index++) if (o.equals(elementdata[index])) { fastremove(index); return true; } } return false; } /* * private remove method that skips bounds checking and does not * return the value removed. */ private void fastremove(int index) { modcount++; int nummoved = size - index - 1; if (nummoved > 0) system.arraycopy(elementdata, index+1, elementdata, index, nummoved); elementdata[--size] = null; // clear to let gc do its work } /** * 移除列表中的所有元素,之后会返回一个空数组 */ public void clear() { modcount++; // clear to let gc do its work for (int i = 0; i < size; i++) elementdata[i] = null; size = 0; } /** * 将指定集合中的元素以iterator返回的顺序,追加到列表末尾 */ public boolean addall(collection<? extends e> c) { object[] a = c.toarray(); int numnew = a.length; ensurecapacityinternal(size + numnew); // increments modcount system.arraycopy(a, 0, elementdata, size, numnew); size += numnew; return numnew != 0; } /** * 将指定集合中的元素以iterator返回的顺序,插入到指定位置 */ public boolean addall(int index, collection<? extends e> c) { rangecheckforadd(index); object[] a = c.toarray(); int numnew = a.length; ensurecapacityinternal(size + numnew); // increments modcount int nummoved = size - index; if (nummoved > 0) system.arraycopy(elementdata, index, elementdata, index + numnew, nummoved); system.arraycopy(a, 0, elementdata, index, numnew); size += numnew; return numnew != 0; } /** * 移除[fromindex,toindex)之间的元素,后续元素移到左端 */ protected void removerange(int fromindex, int toindex) { modcount++; int nummoved = size - toindex; system.arraycopy(elementdata, toindex, elementdata, fromindex, nummoved); // clear to let gc do its work int newsize = size - (toindex-fromindex); for (int i = newsize; i < size; i++) { elementdata[i] = null; } size = newsize; } /** *检查给定索引是否在界限内。 */ private void rangecheck(int index) { if (index >= size) throw new indexoutofboundsexception(outofboundsmsg(index)); } /** * add and addall使用的rangecheck */ private void rangecheckforadd(int index) { if (index > size || index < 0) throw new indexoutofboundsexception(outofboundsmsg(index)); } /** * 返回 an indexoutofboundsexception 的细节信息 */ private string outofboundsmsg(int index) { return "index: "+index+", size: "+size; } /** * 从列表中移除指定集合包含的所有元素 */ public boolean removeall(collection<?> c) { objects.requirenonnull(c); return batchremove(c, false); } /** * 保留此列表中指定集合的所有元素 */ public boolean retainall(collection<?> c) { objects.requirenonnull(c); return batchremove(c, true); } //批量移除 private boolean batchremove(collection<?> c, boolean complement) { final object[] elementdata = this.elementdata; int r = 0, w = 0; boolean modified = false; try { for (; r < size; r++) if (c.contains(elementdata[r]) == complement) elementdata[w++] = elementdata[r]; } finally { // preserve behavioral compatibility with abstractcollection, // even if c.contains() throws. if (r != size) { system.arraycopy(elementdata, r, elementdata, w, size - r); w += size - r; } if (w != size) { // clear to let gc do its work for (int i = w; i < size; i++) elementdata[i] = null; modcount += size - w; size = w; modified = true; } } return modified; } /** * 保存arraylist状态到一个流中(即序列化) */ private void writeobject(java.io.objectoutputstream s) throws java.io.ioexception{ // write out element count, and any hidden stuff int expectedmodcount = modcount; s.defaultwriteobject(); // write out size as capacity for behavioural compatibility with clone() s.writeint(size); // write out all elements in the proper order. for (int i=0; i<size; i++) { s.writeobject(elementdata[i]); } if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } } /** * 从一个流中读取arraylist(即反序列化) */ private void readobject(java.io.objectinputstream s) throws java.io.ioexception, classnotfoundexception { elementdata = empty_elementdata; // read in size, and any hidden stuff s.defaultreadobject(); // read in capacity s.readint(); // ignored if (size > 0) { // be like clone(), allocate array based upon size not capacity int capacity = calculatecapacity(elementdata, size); sharedsecrets.getjavaoisaccess().checkarray(s, object[].class, capacity); ensurecapacityinternal(size); object[] a = elementdata; // read in all elements in the proper order. for (int i=0; i<size; i++) { a[i] = s.readobject(); } } } /** * 从列表中的指定位置开始,返回之后所有元素的列表迭代器(按正确的顺序) * 指定的索引表示初始调用将返回的第一个元素为next 。 初始调用previous将返回指定索引减1的元素。 * 返回的列表迭代器是fail-fast 。 */ public listiterator<e> listiterator(int index) { if (index < 0 || index > size) throw new indexoutofboundsexception("index: "+index); return new listitr(index); } /** * 返回列表中的包含所有元素的列表迭代器(按正确的顺序)。 * 返回的列表迭代器是fail-fast 。 */ public listiterator<e> listiterator() { return new listitr(0); } /** * 以正确的顺序返回列表中的包含所有元素的迭代器。 * 返回的迭代器是fail-fast 。 */ public iterator<e> iterator() { return new itr(); } @override public void foreach(consumer<? super e> action) { objects.requirenonnull(action); final int expectedmodcount = modcount; @suppresswarnings("unchecked") final e[] elementdata = (e[]) this.elementdata; final int size = this.size; for (int i=0; modcount == expectedmodcount && i < size; i++) { action.accept(elementdata[i]); } if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } } @override public boolean removeif(predicate<? super e> filter) { objects.requirenonnull(filter); // figure out which elements are to be removed // any exception thrown from the filter predicate at this stage // will leave the collection unmodified int removecount = 0; final bitset removeset = new bitset(size); final int expectedmodcount = modcount; final int size = this.size; for (int i=0; modcount == expectedmodcount && i < size; i++) { @suppresswarnings("unchecked") final e element = (e) elementdata[i]; if (filter.test(element)) { removeset.set(i); removecount++; } } if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } // shift surviving elements left over the spaces left by removed elements final boolean anytoremove = removecount > 0; if (anytoremove) { final int newsize = size - removecount; for (int i=0, j=0; (i < size) && (j < newsize); i++, j++) { i = removeset.nextclearbit(i); elementdata[j] = elementdata[i]; } for (int k=newsize; k < size; k++) { elementdata[k] = null; // let gc do its work } this.size = newsize; if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } modcount++; } return anytoremove; } @override @suppresswarnings("unchecked") public void replaceall(unaryoperator<e> operator) { objects.requirenonnull(operator); final int expectedmodcount = modcount; final int size = this.size; for (int i=0; modcount == expectedmodcount && i < size; i++) { elementdata[i] = operator.apply((e) elementdata[i]); } if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } modcount++; } @override @suppresswarnings("unchecked") public void sort(comparator<? super e> c) { final int expectedmodcount = modcount; arrays.sort((e[]) elementdata, 0, size, c); if (modcount != expectedmodcount) { throw new concurrentmodificationexception(); } modcount++; } }
(以上所有内容皆为个人笔记,如有错误之处还望指正。)
上一篇: 机器学习 AI 谷歌ML Kit 与苹果Core ML
下一篇: echarts图表数据信息动态获取