我想在我的程序中使用ArrayBuffer来保存数字列表.我想用它作为队列.每次删除列表中的第一项并使用它.然后我想知道每次删除第一个项目时,队列中的所有其他数字都会移动一个地方.我的意思是下次我可以再次读取项目(0)吗?
解决方法:
如果您查看Scala source code或ArrayBuffer,您将看到以下remove的实现:
/** Removes the element on a given index position. It takes time linear in
* the buffer size.
*
* @param n the index which refers to the first element to delete.
* @param count the number of elements to delete
* @throws Predef.IndexOutOfBoundsException if `n` is out of bounds.
*/
override def remove(n: Int, count: Int) {
require(count >= 0, "removing negative number of elements")
if (n < 0 || n > size0 - count) throw new IndexOutOfBoundsException(n.toString)
copy(n + count, n, size0 - (n + count))
reduceToSize(size0 - count)
}
因此,删除的元素将不再存在于数组中,但实际上,删除意味着复制所有元素(在定义中“移位”),对于较长的数组,它将会很慢.