1. 程式人生 > >thinking in java (十三) ----- 集合之Vctor

thinking in java (十三) ----- 集合之Vctor

Vector介紹

  • 簡介

是一種向量佇列,繼承與AbstractList,實現了List,RandomAccess,Cloneable等介面

繼承了AbstractList,實現了List,所以是一個佇列,支援相關的增刪改遍歷操作

實現了RandomAccess介面,提供了隨機訪問功能。RandomAccess是java中用來被List實現,為List提供快速訪問功能的。在Vector中我們可以通過元素的index快速獲取元素物件,這就是快速隨機訪問

實現了Cloneable介面,能夠被克隆

執行緒安全

  • 建構函式

一共有四個建構函式

Vector共有4個建構函式
// 預設建構函式
Vector()

// capacity是Vector的預設容量大小。當由於增加資料導致容量增加時,每次容量會增加一倍。
Vector(int capacity)

// capacity是Vector的預設容量大小,capacityIncrement是每次Vector容量增加時的增量值。
Vector(int capacity, int capacityIncrement)

// 建立一個包含collection的Vector
Vector(Collection<? extends E> collection)

Vector資料結構

Vector的繼承關係

java.lang.Object
   ↳     java.util.AbstractCollection<E>
         ↳     java.util.AbstractList<E>
               ↳     java.util.Vector<E>

public class Vector<E>
    extends AbstractList<E>
    implements List<E>, RandomAccess, Cloneable, java.io.Serializable {}

Vector和collection的關係圖如圖

可以看出,資料結構上來說,Vector和ArrayList差不多,它包含了三個成員變數,elementCount,elementData,capacityIncrement

1,elementData是Object[]類的陣列,它儲存了新增到Vector的元素,elementData是一個動態陣列,初始化時,指定的初始容量是10,隨著元素的增加,容量也會動態增加,capacityIncrement是與容量增加相關的增長係數,具體的方式參考原始碼

2,elementCount是動態陣列的實際大小

3,capacityIncrement是動態陣列的增長係數

Vector原始碼解析

package java.util;

public class Vector<E>
    extends AbstractList<E>
    implements List<E>, RandomAccess, Cloneable, java.io.Serializable
{
   
    // 儲存Vector中資料的陣列
    protected Object[] elementData;

    // 實際資料的數量
    protected int elementCount;

    // 容量增長係數
    protected int capacityIncrement;

    // Vector的序列版本號
    private static final long serialVersionUID = -2767605614048989439L;

    // Vector建構函式。預設容量是10。
    public Vector() {
        this(10);
    }

    // 指定Vector容量大小的建構函式
    public Vector(int initialCapacity) {
        this(initialCapacity, 0);
    }

    // 指定Vector"容量大小"和"增長係數"的建構函式
    public Vector(int initialCapacity, int capacityIncrement) {
        super();
        if (initialCapacity < 0)
            throw new IllegalArgumentException("Illegal Capacity: "+
                                               initialCapacity);
        // 新建一個數組,陣列容量是initialCapacity
        this.elementData = new Object[initialCapacity];
        // 設定容量增長係數
        this.capacityIncrement = capacityIncrement;
    }

    // 指定集合的Vector建構函式。
    public Vector(Collection<? extends E> c) {
        // 獲取“集合(c)”的陣列,並將其賦值給elementData
        elementData = c.toArray();
        // 設定陣列長度
        elementCount = elementData.length;
        // c.toArray might (incorrectly) not return Object[] (see 6260652)
        if (elementData.getClass() != Object[].class)
            elementData = Arrays.copyOf(elementData, elementCount, Object[].class);
    }

    // 將陣列Vector的全部元素都拷貝到陣列anArray中
    public synchronized void copyInto(Object[] anArray) {
        System.arraycopy(elementData, 0, anArray, 0, elementCount);
    }

    // 將當前容量值設為 =實際元素個數
    public synchronized void trimToSize() {
        modCount++;
        int oldCapacity = elementData.length;
        if (elementCount < oldCapacity) {
            elementData = Arrays.copyOf(elementData, elementCount);
        }
    }

    // 確認“Vector容量”的幫助函式
    private void ensureCapacityHelper(int minCapacity) {
        int oldCapacity = elementData.length;
        // 當Vector的容量不足以容納當前的全部元素,增加容量大小。
        // 若 容量增量係數>0(即capacityIncrement>0),則將容量增大當capacityIncrement
        // 否則,將容量增大一倍。
        if (minCapacity > oldCapacity) {
            Object[] oldData = elementData;
            int newCapacity = (capacityIncrement > 0) ?
                (oldCapacity + capacityIncrement) : (oldCapacity * 2);
            if (newCapacity < minCapacity) {
                newCapacity = minCapacity;
            }
            elementData = Arrays.copyOf(elementData, newCapacity);
        }
    }

    // 確定Vector的容量。
    public synchronized void ensureCapacity(int minCapacity) {
        // 將Vector的改變統計數+1
        modCount++;
        ensureCapacityHelper(minCapacity);
    }

    // 設定容量值為 newSize
    public synchronized void setSize(int newSize) {
        modCount++;
        if (newSize > elementCount) {
            // 若 "newSize 大於 Vector容量",則調整Vector的大小。
            ensureCapacityHelper(newSize);
        } else {
            // 若 "newSize 小於/等於 Vector容量",則將newSize位置開始的元素都設定為null
            for (int i = newSize ; i < elementCount ; i++) {
                elementData[i] = null;
            }
        }
        elementCount = newSize;
    }

    // 返回“Vector的總的容量”
    public synchronized int capacity() {
        return elementData.length;
    }

    // 返回“Vector的實際大小”,即Vector中元素個數
    public synchronized int size() {
        return elementCount;
    }

    // 判斷Vector是否為空
    public synchronized boolean isEmpty() {
        return elementCount == 0;
    }

    // 返回“Vector中全部元素對應的Enumeration”
    public Enumeration<E> elements() {
        // 通過匿名類實現Enumeration
        return new Enumeration<E>() {
            int count = 0;

            // 是否存在下一個元素
            public boolean hasMoreElements() {
                return count < elementCount;
            }

            // 獲取下一個元素
            public E nextElement() {
                synchronized (Vector.this) {
                    if (count < elementCount) {
                        return (E)elementData[count++];
                    }
                }
                throw new NoSuchElementException("Vector Enumeration");
            }
        };
    }

    // 返回Vector中是否包含物件(o)
    public boolean contains(Object o) {
        return indexOf(o, 0) >= 0;
    }


    // 從index位置開始向後查詢元素(o)。
    // 若找到,則返回元素的索引值;否則,返回-1
    public synchronized int indexOf(Object o, int index) {
        if (o == null) {
            // 若查詢元素為null,則正向找出null元素,並返回它對應的序號
            for (int i = index ; i < elementCount ; i++)
            if (elementData[i]==null)
                return i;
        } else {
            // 若查詢元素不為null,則正向找出該元素,並返回它對應的序號
            for (int i = index ; i < elementCount ; i++)
            if (o.equals(elementData[i]))
                return i;
        }
        return -1;
    }

    // 查詢並返回元素(o)在Vector中的索引值
    public int indexOf(Object o) {
        return indexOf(o, 0);
    }

    // 從後向前查詢元素(o)。並返回元素的索引
    public synchronized int lastIndexOf(Object o) {
        return lastIndexOf(o, elementCount-1);
    }

    // 從後向前查詢元素(o)。開始位置是從前向後的第index個數;
    // 若找到,則返回元素的“索引值”;否則,返回-1。
    public synchronized int lastIndexOf(Object o, int index) {
        if (index >= elementCount)
            throw new IndexOutOfBoundsException(index + " >= "+ elementCount);

        if (o == null) {
            // 若查詢元素為null,則反向找出null元素,並返回它對應的序號
            for (int i = index; i >= 0; i--)
            if (elementData[i]==null)
                return i;
        } else {
            // 若查詢元素不為null,則反向找出該元素,並返回它對應的序號
            for (int i = index; i >= 0; i--)
            if (o.equals(elementData[i]))
                return i;
        }
        return -1;
    }

    // 返回Vector中index位置的元素。
    // 若index月結,則丟擲異常
    public synchronized E elementAt(int index) {
        if (index >= elementCount) {
            throw new ArrayIndexOutOfBoundsException(index + " >= " + elementCount);
        }

        return (E)elementData[index];
    }

    // 獲取Vector中的第一個元素。
    // 若失敗,則丟擲異常!
    public synchronized E firstElement() {
        if (elementCount == 0) {
            throw new NoSuchElementException();
        }
        return (E)elementData[0];
    }

    // 獲取Vector中的最後一個元素。
    // 若失敗,則丟擲異常!
    public synchronized E lastElement() {
        if (elementCount == 0) {
            throw new NoSuchElementException();
        }
        return (E)elementData[elementCount - 1];
    }

    // 設定index位置的元素值為obj
    public synchronized void setElementAt(E obj, int index) {
        if (index >= elementCount) {
            throw new ArrayIndexOutOfBoundsException(index + " >= " +
                                 elementCount);
        }
        elementData[index] = obj;
    }

    // 刪除index位置的元素
    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--;
        elementData[elementCount] = null; /* to let gc do its work */
    }

    // 在index位置處插入元素(obj)
    public synchronized void insertElementAt(E obj, int index) {
        modCount++;
        if (index > elementCount) {
            throw new ArrayIndexOutOfBoundsException(index
                                 + " > " + elementCount);
        }
        ensureCapacityHelper(elementCount + 1);
        System.arraycopy(elementData, index, elementData, index + 1, elementCount - index);
        elementData[index] = obj;
        elementCount++;
    }

    // 將“元素obj”新增到Vector末尾
    public synchronized void addElement(E obj) {
        modCount++;
        ensureCapacityHelper(elementCount + 1);
        elementData[elementCount++] = obj;
    }

    // 在Vector中查詢並刪除元素obj。
    // 成功的話,返回true;否則,返回false。
    public synchronized boolean removeElement(Object obj) {
        modCount++;
        int i = indexOf(obj);
        if (i >= 0) {
            removeElementAt(i);
            return true;
        }
        return false;
    }

    // 刪除Vector中的全部元素
    public synchronized void removeAllElements() {
        modCount++;
        // 將Vector中的全部元素設為null
        for (int i = 0; i < elementCount; i++)
            elementData[i] = null;

        elementCount = 0;
    }

    // 克隆函式
    public synchronized Object clone() {
        try {
            Vector<E> v = (Vector<E>) super.clone();
            // 將當前Vector的全部元素拷貝到v中
            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();
        }
    }

    // 返回Object陣列
    public synchronized Object[] toArray() {
        return Arrays.copyOf(elementData, elementCount);
    }

    // 返回Vector的模板陣列。所謂模板陣列,即可以將T設為任意的資料型別
    public synchronized <T> T[] toArray(T[] a) {
        // 若陣列a的大小 < Vector的元素個數;
        // 則新建一個T[]陣列,陣列大小是“Vector的元素個數”,並將“Vector”全部拷貝到新陣列中
        if (a.length < elementCount)
            return (T[]) Arrays.copyOf(elementData, elementCount, a.getClass());

        // 若陣列a的大小 >= Vector的元素個數;
        // 則將Vector的全部元素都拷貝到陣列a中。
    System.arraycopy(elementData, 0, a, 0, elementCount);

        if (a.length > elementCount)
            a[elementCount] = null;

        return a;
    }

    // 獲取index位置的元素
    public synchronized E get(int index) {
        if (index >= elementCount)
            throw new ArrayIndexOutOfBoundsException(index);

        return (E)elementData[index];
    }

    // 設定index位置的值為element。並返回index位置的原始值
    public synchronized E set(int index, E element) {
        if (index >= elementCount)
            throw new ArrayIndexOutOfBoundsException(index);

        Object oldValue = elementData[index];
        elementData[index] = element;
        return (E)oldValue;
    }

    // 將“元素e”新增到Vector最後。
    public synchronized boolean add(E e) {
        modCount++;
        ensureCapacityHelper(elementCount + 1);
        elementData[elementCount++] = e;
        return true;
    }

    // 刪除Vector中的元素o
    public boolean remove(Object o) {
        return removeElement(o);
    }

    // 在index位置新增元素element
    public void add(int index, E element) {
        insertElementAt(element, index);
    }

    // 刪除index位置的元素,並返回index位置的原始值
    public synchronized E remove(int index) {
        modCount++;
        if (index >= elementCount)
            throw new ArrayIndexOutOfBoundsException(index);
        Object 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 (E)oldValue;
    }

    // 清空Vector
    public void clear() {
        removeAllElements();
    }

    // 返回Vector是否包含集合c
    public synchronized boolean containsAll(Collection<?> c) {
        return super.containsAll(c);
    }

    // 將集合c新增到Vector中
    public synchronized boolean addAll(Collection<? extends E> c) {
        modCount++;
        Object[] a = c.toArray();
        int numNew = a.length;
        ensureCapacityHelper(elementCount + numNew);
        // 將集合c的全部元素拷貝到陣列elementData中
        System.arraycopy(a, 0, elementData, elementCount, numNew);
        elementCount += numNew;
        return numNew != 0;
    }

    // 刪除集合c的全部元素
    public synchronized boolean removeAll(Collection<?> c) {
        return super.removeAll(c);
    }

    // 刪除“非集合c中的元素”
    public synchronized boolean retainAll(Collection<?> c)  {
        return super.retainAll(c);
    }

    // 從index位置開始,將集合c新增到Vector中
    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();
    }

    // 呼叫父類的toString()
    public synchronized String toString() {
        return super.toString();
    }

    // 獲取Vector中fromIndex(包括)到toIndex(不包括)的子集
    public synchronized List<E> subList(int fromIndex, int toIndex) {
        return Collections.synchronizedList(super.subList(fromIndex, toIndex), this);
    }

    // 刪除Vector中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;
    }

    // java.io.Serializable的寫入函式
    private synchronized void writeObject(java.io.ObjectOutputStream s)
        throws java.io.IOException {
        s.defaultWriteObject();
    }
}

總結:1,Vector實際上是通過陣列儲存資料的,當我們構造Vector時,如果使用的是預設構造,就是預設容量為10

2,當Vector容量不足以容納全部元素的時候,Vector容量會增加,如果容量增加係數大於0,則將容量的值增加“容量增加係數”,否則就將容量增加一倍

3,Vector的克隆函式,就是講全部元素克隆到另外一個數組裡面

Vector遍歷方式

有四種遍歷方式

  • 第一種,通過迭代器遍歷,第二種,隨機訪問,由於實現了RandomAccess介面,支援通過索引隨機訪問元素,第三種,foreach,第四種,Enumeration遍歷
public class VectorRandomAccessTest {

    public static void main(String[] args) {
        Vector vec= new Vector();
        for (int i=0; i<100000; i++) {
            vec.add(i);
        }
        iteratorThroughRandomAccess(vec) ;
        iteratorThroughIterator(vec) ;
        iteratorThroughFor2(vec) ;
        iteratorThroughEnumeration(vec) ;
    
    }


//隨即快速訪問
    public static void iteratorThroughRandomAccess(List list) {

        long startTime;
        long endTime;
        startTime = System.currentTimeMillis();
        for (int i=0; i<list.size(); i++) {
            list.get(i);
        }
        endTime = System.currentTimeMillis();
        long interval = endTime - startTime;
        System.out.println("iteratorThroughRandomAccess:" + interval+" ms");
    }
//迭代器
    public static void iteratorThroughIterator(List list) {

        long startTime;
        long endTime;
        startTime = System.currentTimeMillis();
        for(Iterator iter = list.iterator(); iter.hasNext(); ) {
            iter.next();
        }
        endTime = System.currentTimeMillis();
        long interval = endTime - startTime;
        System.out.println("iteratorThroughIterator:" + interval+" ms");
    }

//foreach
    public static void iteratorThroughFor2(List list) {

        long startTime;
        long endTime;
        startTime = System.currentTimeMillis();
        for(Object obj:list)
            ;
        endTime = System.currentTimeMillis();
        long interval = endTime - startTime;
        System.out.println("iteratorThroughFor2:" + interval+" ms");
    }
//Enumeration
    public static void iteratorThroughEnumeration(Vector vec) {

        long startTime;
        long endTime;
        startTime = System.currentTimeMillis();
        for(Enumeration enu = vec.elements(); enu.hasMoreElements(); ) {
            enu.nextElement();
        }
        endTime = System.currentTimeMillis();
        long interval = endTime - startTime;
        System.out.println("iteratorThroughEnumeration:" + interval+" ms");
    }
}
iteratorThroughRandomAccess:6 ms
iteratorThroughIterator:9 ms
iteratorThroughFor2:8 ms
iteratorThroughEnumeration:7 ms

總結:遍歷Vector,使用索引隨機訪問最快,使用迭代器最慢

Vector示例

public class VectorTest {
    public static void main(String[] args) {
        // 新建Vector
        Vector vec = new Vector();
            
        // 新增元素
        vec.add("1");
        vec.add("2");
        vec.add("3");
        vec.add("4");
        vec.add("5");

        // 設定第一個元素為100
        vec.set(0, "100");
        // 將“500”插入到第3個位置
        vec.add(2, "300");
        System.out.println("vec:"+vec);

        // (順序查詢)獲取100的索引
        System.out.println("vec.indexOf(100):"+vec.indexOf("100"));
        // (倒序查詢)獲取100的索引
        System.out.println("vec.lastIndexOf(100):"+vec.lastIndexOf("100"));
        // 獲取第一個元素
        System.out.println("vec.firstElement():"+vec.firstElement());
        // 獲取第3個元素
        System.out.println("vec.elementAt(2):"+vec.elementAt(2));
        // 獲取最後一個元素
        System.out.println("vec.lastElement():"+vec.lastElement());

        // 獲取Vector的大小
        System.out.println("size:"+vec.size());
        // 獲取Vector的總的容量
        System.out.println("capacity:"+vec.capacity());

        // 獲取vector的“第2”到“第4”個元素
        System.out.println("vec 2 to 4:"+vec.subList(1, 4));

        // 通過Enumeration遍歷Vector
        Enumeration enu = vec.elements();
        while(enu.hasMoreElements())
            System.out.println("nextElement():"+enu.nextElement());
            
        Vector retainVec = new Vector();
        retainVec.add("100");
        retainVec.add("300");
        // 獲取“vec”中包含在“retainVec中的元素”的集合
        System.out.println("vec.retain():"+vec.retainAll(retainVec));
        System.out.println("vec:"+vec);
            
        // 獲取vec對應的String陣列
        String[] arr = (String[]) vec.toArray(new String[0]);
        for (String str:arr)
            System.out.println("str:"+str);

        // 清空Vector。clear()和removeAllElements()一樣!
        vec.clear();
//        vec.removeAllElements();

        // 判斷Vector是否為空
        System.out.println("vec.isEmpty():"+vec.isEmpty());
    }   
}
vec:[100, 2, 300, 3, 4, 5]
vec.indexOf(100):0
vec.lastIndexOf(100):0
vec.firstElement():100
vec.elementAt(2):300
vec.lastElement():5
size:6
capacity:10
vec 2 to 4:[2, 300, 3]
nextElement():100
nextElement():2
nextElement():300
nextElement():3
nextElement():4
nextElement():5
vec.retain():true
vec:[100, 300]
str:100
str:300
vec.isEmpty():true

原文:https://www.cnblogs.com/skywang12345/p/3308833.html