java removeto_Java中List中remove的实质

本文深入解析了Java中List的remove方法的内部实现,通过`fastRemove`方法展示了如何移除元素,并解释了移除操作对栈和堆数据的影响。在移除元素后,GC会负责清理堆上的数据。核心语句`System.arraycopy`用于数组元素的移动,确保正确删除指定索引的元素。
摘要由CSDN通过智能技术生成

A.如果List的泛型类型为引用类型(Object), 那么,remove只针对List实例所在的栈数据,

堆数据的移除不由remove完成(是gc完成)。

B.List移除功能的核心,在Java内部的实现为:

/* * 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; // Let gc do its work

}

核心语句: System.arraycopy(elementData, index+1, elementData, index, numMoved);

其参数含义分别为:

src:the source array.

srcPos:starting position in the source array.

dest:the destination array.

destPos:starting position in the destination data.

length:the number of array elements to be copied.

该语句可以用下图表示:

fd450b423d8fb8ecae43f6cf3798f9ad.gif

前提条件:index>2。 也就是将数组elementData中从(index+1)开始直到数组的末尾的所有数,

都依次向前移动一位, 移动后的数组,在最末两位的值是相等的,所以需要清空数组中最后一个数据,

elementData[--size] = null; // Let gc do its work

此时,数组(elementData)index位置的值就已经被剔除了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值