Vector源码
/* 1.Vector可以随着用户插入或删除元素来改变自己的大小。 2.Vector类通过维护capacity(函数)和capacityIncrement(变量)来优化存储。 3.capacity总是至少和vector的size一般大(capacity>=size)。 4.通过在向vector插入元素之前增大capacity,可以减少很大的内存分配时间。 */ package java.util; public class Vector<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable { //用来存储vector元素的数组,vector的captcity等于数组的length protected Object[] elementData; //vector中实际存在元素的数目 protected int elementCount; /* 1.capacity表示当需要存储空间大于capacity时,vector存储空间增大的数目 2.当capacity<=0时,vector的capacity每次需要增长时,大小翻倍 */ protected int capacityIncrement; //使用JDK 1.0.2得到的序列号 private static final long serialVersionUID = -2767605614048989439L; /* 1.初始化一个空的Vector 2.initialCapacity表示vector的初始大小。 3.capacityIncrement表示当vector溢出(overflow)时,capacity需要增加的数目 */ public Vector(int initialCapacity, int capacityIncrement) { //Vector的直接父类AbstractList的构造函数为空,没有什么特别的意义 super(); //如果初始大小为负,抛出参数异常 if (initialCapacity < 0) throw new IllegalArgumentException("Illegal Capacity: "+ initialCapacity); //初始化成员变量 this.elementData = new Object[initialCapacity]; this.capacityIncrement = capacityIncrement; } //默认的capacityIncrement为0,表示vector大小需要增加时,采用double策略 public Vector(int initialCapacity) { this(initialCapacity, 0); } //默认Vector的大小为10 public Vector() { this(10); } public Vector(Collection<? extends E> c) { //调用Collection子类的toArray方法 elementData = c.toArray(); elementCount = elementData.length; // c.toArray might (incorrectly) not return Object[] (see 6260652) /* 1.Arrays.copyOf(U[] original, int newLength, Class<? extends T[]> newType) 复制指定的数组,截取或用 null 填充(如有必要),以使副本具有指定的长度。 2.就是通过一系列方法将Colleciton的元素变成数组存到elementData中 */ if (elementData.getClass() != Object[].class) elementData = Arrays.copyOf(elementData, elementCount, Object[].class); } /* 1.sysnchronized:从这里可以看出:vector线程安全,ArrayList不是线程同步的 2.将elemetntData中的元素复制到anArray中 */ public synchronized void copyInto(Object[] anArray) { //从指定源数组中复制一个数组,复制从指定的位置开始,到目标数组的指定位置结束。 System.arraycopy(elementData, 0, anArray, 0, elementCount); } /* 如果vector当前实际元素数目小于capacity,将vector缩小。 常用于减少vector的存储空间 */ public synchronized void trimToSize() { /* 1.在Vector和ArrayList的直接父类AbstractList中声明,表示集合容器结构上被修改的次数 通常用于线程并发中。(结构修改通常指改变容器size,以及使迭代器产生错误结果的情况) */ modCount++; int oldCapacity = elementData.length; if (elementCount < oldCapacity) { elementData = Arrays.copyOf(elementData, elementCount); } } /* 1.增大vector的大小,确保能存放至少minCapacity个元素 */ public synchronized void ensureCapacity(int minCapacity) { if (minCapacity > 0) { modCount++; ensureCapacityHelper(minCapacity);//函数在下面 } } private void ensureCapacityHelper(int minCapacity) { // overflow-conscious code //如果当前的elementData.length(即capacity)小于参数mincapacity if (minCapacity - elementData.length > 0) grow(minCapacity);//函数在下面 } /* The maximum size of array to allocate. 有些VM需要在数组前加些头信息(header words ) */ private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8; private void grow(int minCapacity) { // overflow-conscious code int oldCapacity = elementData.length; /* 如果capacityIncrement>0,则新的capacity = 旧的capacity+capacityIncrement 否则double */ int newCapacity = oldCapacity + ((capacityIncrement > 0) ? capacityIncrement : oldCapacity); if (newCapacity - minCapacity < 0) newCapacity = minCapacity; //如果容量过大,进行异常处理 if (newCapacity - MAX_ARRAY_SIZE > 0) newCapacity = hugeCapacity(minCapacity);//函数在下面 elementData = Arrays.copyOf(elementData, newCapacity); } private static int hugeCapacity(int minCapacity) { if (minCapacity < 0) // overflow throw new OutOfMemoryError(); return (minCapacity > MAX_ARRAY_SIZE) ? Integer.MAX_VALUE : MAX_ARRAY_SIZE; } /* 1.如果小了,增大空间,用null填充 2.如果大了,减少空间,用null填充 */ public synchronized void setSize(int newSize) { modCount++; if (newSize > elementCount) { ensureCapacityHelper(newSize); } else { for (int i = newSize ; i < elementCount ; i++) { elementData[i] = null; } } elementCount = newSize; } //capacity = elementData.length ,数据的容量大小(不是实际大小) public synchronized int capacity() { return elementData.length; } //vector的实际大小 public synchronized int size() { return elementCount; } //是否为空 public synchronized boolean isEmpty() { return elementCount == 0; } // 返回此vector的组件的枚举。 public Enumeration<E> elements() { //内部类 return new Enumeration<E>() { int count = 0; public boolean hasMoreElements() { return count < elementCount; } public E nextElement() { //锁机制 synchronized (Vector.this) { if (count < elementCount) { return elementData(count++); } } throw new NoSuchElementException("Vector Enumeration"); } }; } //是否包含o对象 public boolean contains(Object o) { return indexOf(o, 0) >= 0; } //o对象的位置 public int indexOf(Object o) { return indexOf(o, 0); } //index为起始位置,返回-1表示不包含o对象 public synchronized int indexOf(Object o, int index) { if (o == null) { for (int i = index ; i < elementCount ; i++) if (elementData[i]==null) return i; } else { for (int i = index ; i < elementCount ; i++) if (o.equals(elementData[i])) return i; } return -1; } //o对象的最后位置 public synchronized int lastIndexOf(Object o) { return lastIndexOf(o, elementCount-1); } //反向查找,就是lastIndexOf public synchronized int lastIndexOf(Object o, int index) { if (index >= elementCount) throw new IndexOutOfBoundsException(index + " >= "+ elementCount); if (o == null) { for (int i = index; i >= 0; i--) if (elementData[i]==null) return i; } else { for (int i = index; i >= 0; i--) if (o.equals(elementData[i])) return i; } return -1; } //返回指定位置对象 public synchronized E elementAt(int index) { if (index >= elementCount) { throw new ArrayIndexOutOfBoundsException(index + " >= " + elementCount); } return elementData(index);//还可以这样调用?!,这是个函数,在下面有 } //返回vector中第一个对象 public synchronized E firstElement() { if (elementCount == 0) { throw new NoSuchElementException(); } return elementData(0); } //返回vector中第二个对象 public synchronized E lastElement() { if (elementCount == 0) { throw new NoSuchElementException(); } return elementData(elementCount - 1); } //设置指定位置对象的值 public synchronized void setElementAt(E obj, int index) { if (index >= elementCount) { throw new ArrayIndexOutOfBoundsException(index + " >= " + elementCount); } elementData[index] = obj; } //删除指定位置对象 public synchronized void removeElementAt(int index) { modCount++; if (index >= elementCount) { throw new ArrayIndexOutOfBoundsException(index + " >= " + elementCount); } else if (index < 0) { throw new ArrayIndexOutOfBoundsException(index); } //得到删除位置到结尾之间的距离 int j = elementCount - index - 1; if (j > 0) { System.arraycopy(elementData, index + 1, elementData, index, j); } elementCount--; //java中不必自己删除对象(用delete用习惯了),将对象置为null即可 elementData[elementCount] = null; /* to let gc do its work */ } public synchronized void insertElementAt(E obj, int index) { modCount++; if (index > elementCount) { throw new ArrayIndexOutOfBoundsException(index + " > " + elementCount); } //扩大vector的存储空间 ensureCapacityHelper(elementCount + 1); //多了好多的拷贝时间呀 System.arraycopy(elementData, index, elementData, index + 1, elementCount - index); elementData[index] = obj; elementCount++; } //直接在末尾添加 public synchronized void addElement(E obj) { modCount++; ensureCapacityHelper(elementCount + 1); elementData[elementCount++] = obj; } //先找到位置,在删除对象 public synchronized boolean removeElement(Object obj) { modCount++; int i = indexOf(obj); if (i >= 0) { removeElementAt(i); return true; } return false; } //将对象置为null,就可以删除对象了 public synchronized void removeAllElements() { modCount++; // Let gc do its work for (int i = 0; i < elementCount; i++) elementData[i] = null; elementCount = 0; } //创建并返回此对象的一个副本(不是同一个对象了) public synchronized Object clone() { try { @SuppressWarnings("unchecked") Vector<E> v = (Vector<E>) super.clone(); v.elementData = Arrays.copyOf(elementData, elementCount); v.modCount = 0; return v; } catch (CloneNotSupportedException e) { // this shouldn't happen, since we are Cloneable throw new InternalError(); } } //得到数组的表现形式 public synchronized Object[] toArray() { return Arrays.copyOf(elementData, elementCount); } //返回一个数组,包含此向量中以恰当顺序存放的所有元素;返回数组的运行时类型为指定数组的类型。 @SuppressWarnings("unchecked") public synchronized <T> T[] toArray(T[] a) { if (a.length < elementCount) return (T[]) Arrays.copyOf(elementData, elementCount, a.getClass()); System.arraycopy(elementData, 0, a, 0, elementCount); if (a.length > elementCount) a[elementCount] = null; return a; } @SuppressWarnings("unchecked") E elementData(int index) { return (E) elementData[index]; } //直接获取 public synchronized E get(int index) { if (index >= elementCount) throw new ArrayIndexOutOfBoundsException(index); return elementData(index); } //直接设置 public synchronized E set(int index, E element) { if (index >= elementCount) throw new ArrayIndexOutOfBoundsException(index); E oldValue = elementData(index); elementData[index] = element; return oldValue; } //直接增加 public synchronized boolean add(E e) { modCount++; ensureCapacityHelper(elementCount + 1); elementData[elementCount++] = e; return true; } //移除第一个匹配项 public boolean remove(Object o) { return removeElement(o); } public void add(int index, E element) { insertElementAt(element, index); } public synchronized E remove(int index) { modCount++; if (index >= elementCount) throw new ArrayIndexOutOfBoundsException(index); //保存旧的对象 E oldValue = elementData(index); //将后面的对象往前移动 int numMoved = elementCount - index - 1; if (numMoved > 0) System.arraycopy(elementData, index+1, elementData, index, numMoved); elementData[--elementCount] = null; // Let gc do its work return oldValue; } public void clear() { removeAllElements(); } public synchronized boolean containsAll(Collection<?> c) { return super.containsAll(c); } //将指定 Collection 中的所有元素添加到此向量的末尾,按照指定 collection 的迭代器所返回的顺序添加这些元素。 public synchronized boolean addAll(Collection<? extends E> c) { modCount++; Object[] a = c.toArray(); int numNew = a.length; ensureCapacityHelper(elementCount + numNew); System.arraycopy(a, 0, elementData, elementCount, numNew); elementCount += numNew; return numNew != 0; } public synchronized boolean removeAll(Collection<?> c) { return super.removeAll(c); } public synchronized boolean retainAll(Collection<?> c) { return super.retainAll(c); } //在指定位置将指定 Collection 中的所有元素插入到此向量中。 public synchronized boolean addAll(int index, Collection<? extends E> c) { modCount++; if (index < 0 || index > elementCount) throw new ArrayIndexOutOfBoundsException(index); Object[] a = c.toArray(); int numNew = a.length; //首先扩大容量 ensureCapacityHelper(elementCount + numNew); int numMoved = elementCount - index; if (numMoved > 0) System.arraycopy(elementData, index, elementData, index + numNew, numMoved); System.arraycopy(a, 0, elementData, index, numNew); elementCount += numNew; return numNew != 0; } public synchronized boolean equals(Object o) { return super.equals(o); } public synchronized int hashCode() { return super.hashCode(); } public synchronized String toString() { return super.toString(); } public synchronized List<E> subList(int fromIndex, int toIndex) { return Collections.synchronizedList(super.subList(fromIndex, toIndex),this); } //从此 List 中移除其索引位于 fromIndex(包括)与 toIndex(不包括)之间的所有元素。 protected synchronized void removeRange(int fromIndex, int toIndex) { modCount++; int numMoved = elementCount - toIndex; //现将后面的对象移到前面来 System.arraycopy(elementData, toIndex, elementData, fromIndex, numMoved); // Let gc do its work int newElementCount = elementCount - (toIndex-fromIndex); while (elementCount != newElementCount) elementData[--elementCount] = null; } private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException { final java.io.ObjectOutputStream.PutField fields = s.putFields(); final Object[] data; synchronized (this) { fields.put("capacityIncrement", capacityIncrement); fields.put("elementCount", elementCount); data = elementData.clone(); } fields.put("elementData", data); s.writeFields(); } public synchronized ListIterator<E> listIterator(int index) { if (index < 0 || index > elementCount) throw new IndexOutOfBoundsException("Index: "+index); return new ListItr(index);//ListItr类在后面 } public synchronized ListIterator<E> listIterator() { return new ListItr(0); } public synchronized Iterator<E> iterator() { return new Itr();//在后面 } //将迭代器类定义到Vector类的里面,这样迭代器就可以访问vector类的内部变量 private class Itr implements Iterator<E> { int cursor; // index of next element to return int lastRet = -1; // index of last element returned; -1 if no such //用于检查线程是否同步,如果线程不同步,它们两个的值不一样 int expectedModCount = modCount; public boolean hasNext() { // Racy but within spec, since modifications are checked // within or after synchronization in next/previous return cursor != elementCount; } public E next() { synchronized (Vector.this) { //检查线程安全 checkForComodification(); int i = cursor; if (i >= elementCount) throw new NoSuchElementException(); //cursor保存下次要访问的位置 cursor = i + 1; //将最后依次访问的地址赋给lastRet(用于恢复) return elementData(lastRet = i); } } public void remove() { if (lastRet == -1) throw new IllegalStateException(); synchronized (Vector.this) { checkForComodification(); //实质是调用vector自己的remove方法 Vector.this.remove(lastRet); expectedModCount = modCount; } cursor = lastRet; lastRet = -1; } final void checkForComodification() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); } } //ListItr和Itr很像,基本上都是调用vector的方法 final class ListItr extends Itr implements ListIterator<E> { ListItr(int index) { super(); cursor = index; } public boolean hasPrevious() { return cursor != 0;//第二个元素之后的元素都有previous } public int nextIndex() { return cursor; } public int previousIndex() { return cursor - 1; } public E previous() { synchronized (Vector.this) { checkForComodification(); int i = cursor - 1; if (i < 0) throw new NoSuchElementException(); cursor = i; return elementData(lastRet = i); } } public void set(E e) { if (lastRet == -1) throw new IllegalStateException(); synchronized (Vector.this) { checkForComodification(); Vector.this.set(lastRet, e); } } public void add(E e) { int i = cursor; synchronized (Vector.this) { checkForComodification(); Vector.this.add(i, e); expectedModCount = modCount; } cursor = i + 1; lastRet = -1; } }
相关推荐
【JAVA Vector 源码解析和示例代码】 在Java编程语言中,`Vector`类是集合框架的一部分,早在JDK 1.0版本就已经存在。`Vector`类继承自`AbstractList`并实现了`List`, `RandomAccess`, `Cloneable`等接口,提供了...
- **Vector源码分析**:理解 `vector` 的底层实现机制,包括如何动态调整容量、如何高效地插入和删除元素等。 - **Red-Black Tree源码分析**:分析红黑树的插入、删除操作以及颜色翻转等维护平衡的策略。 - **Memory...
Vector 底层结构和源码分析 Vector 是 Java 中一个古老的集合类,用于存储和管理对象的集合。它和ArrayList一样,都是基于数组实现的,但是 Vector 是线程同步的,即线程安全的。在本文中,我们将深入分析 Vector ...
泛型类vector源码分析
### 武侠2源码分析 #### 一、全局对象与模块 在深入解析武侠2源码之前,我们首先需要了解整个项目的架构设计以及各主要模块的功能定位。这对于理解源码逻辑至关重要。 ##### 1.1 Game `Game` 类是整个游戏的核心...
计算机后端-Java-Java核心基础-第24章 集合01 16. Vector的源码分析.avi
在这个“C++简单源码分析”中,我们将探讨C++的基本语法、常用算法以及程序设计技巧。 首先,C++的基础语法是学习的起点。C++的语法结构严谨,包括变量声明、类型系统、控制流(如if语句、for循环和while循环)、...
在IT领域,Fisher向量(Fisher Vector)是一种广泛应用于图像识别和视频分析的特征表示方法,尤其在计算机视觉中具有重要的地位。标题提到的"combined-fisher-vector"项目显然是一个专门针对视频密集轨迹特征提取的...
《JUC并发编程与源码分析视频课》是一门深入探讨Java并发编程的课程,主要聚焦于Java Util Concurrency(JUC)库的使用和源码解析。JUC是Java平台提供的一组高级并发工具包,它极大地简化了多线程编程,并提供了更...
通过对SGI STL`vector`源码的分析,我们可以学习到C++中动态数组的实现技巧,包括内存管理、迭代器实现、异常安全策略等,这对于理解和优化C++程序的性能至关重要。通过深入理解这些内部机制,开发者可以更好地运用...
在编程领域,特别是Java或C++等语言中,向量(Vector)是一种常见的...对于深入的源码分析或特定工具的使用,需要查看原文档或博客内容获取更精确的信息。遗憾的是,提供的链接已无法访问,因此无法提供更详细的解释。
### ARM Linux中断源码分析(2)——中断处理流程 #### 一、中断与异常概述 在ARM架构的Linux系统中,对中断处理的理解是非常重要的。本文将详细解析ARM Linux中断处理流程,从异常向量表出发,深入探讨中断处理的...
思科VPP(Vector Packet Processing)是一个高性能的网络数据平面解决方案,广泛应用于现代网络架构中,特别是在网络功能虚拟化...以上对思科VPP源码分析的知识点总结,提供了深入理解VPP核心概念和工作机制的基础。
本文档共分为三个部分,第一个部分介绍SVM的原理,我们全面介绍了5中常用的SVM算法:C-SVC、ν-SVC、单类SVM、ε-SVR和ν-SVR,其中C-SVC和ν-SVC不仅介绍了处理两类分类问题的情况,还介绍处理多类问题的情况。...
“STL源码分析”这本书主要探讨了STL的内部实现机制,包括容器(如vector、list、set等)、迭代器、算法和适配器等核心组件。通过源码分析,读者可以了解到STL如何利用模板元编程技术实现高效的数据操作,并理解其...
4. **源码分析** - `Vector`的底层实现是一个可变大小的数组,它的很多操作直接对应于数组操作。线程安全是通过在方法上添加`synchronized`关键字来实现的。 - 当`Vector`需要扩容时,它会创建一个新的更大数组,...
能学到什么:ArrayList的源码分析,自动扩容和自动缩容的源码分析,相关参数的深度解析,从是什么,为什么,怎么做三个角度进行讲解,用通俗易懂的白话进行介绍,LinkedList和Vector以及ArrayList的区别以及使用场景...
源码分析时,可以关注以下几个关键点: 1. 容量管理:观察ArrayList和Vector如何进行扩容,了解它们扩容的策略和成本。 2. 插入和删除:比较ArrayList、Vector和LinkedList在插入和删除元素时的代码实现,分析时间...
6. **源码分析**:书中提供的源码可能是作者为了帮助读者深入理解Raphael.js的工作原理和最佳实践而编写的实例代码,可以作为学习和参考的宝贵资源。 7. **性能优化**:讨论如何提高Raphael.js图形的渲染速度,以及...