java list to vector_java容器体系(四)----List(Vector)

Vector 是 AbstractList 的直接子类之一,类声明的形式与 ArrayList 相同,同样实现了 RandomAccess、Cloneable 和 Serializable 接口,支持随机访问。它与ArrayList 的实现方式类似,不同的是,Verctor 是同步的,但是在性能上 Vector 处于劣势,因此在不需要考虑线程安全的情况下,尽量还是使用 ArrayList。

1、成员变量

首先看一下 Vector 的成员变量

protected Object[] elementData; //和 ArrayList 相同,使用了一个对象数组用来存储元素

protected int elementCount; //有效元素的数量

protected int capacityIncrement; //数组的容量自动增加的量,可能大于、等于或小于0

2、构造函数

public Vector(int initialCapacity, int capacityIncrement) { //两个参数分别是初始化容量和增长的容量

super();if (initialCapacity < 0)throw new IllegalArgumentException("Illegal Capacity: "+initialCapacity);this.elementData = newObject[initialCapacity];this.capacityIncrement =capacityIncrement;

}public Vector(int initialCapacity) { //只有初始容量参数

this(initialCapacity, 0); //capacityIncrement 为0

}publicVector() {this(10); //无参数是,初始容量为10,和 ArrayList 一样

}public Vector(Collection extends E>c) {

elementData=c.toArray();

elementCount=elementData.length;//c.toArray might (incorrectly) not return Object[] (see 6260652)

if (elementData.getClass() != Object[].class) //数组类型是Object数组时,将elementData 转化为Object数组

elementData = Arrays.copyOf(elementData, elementCount, Object[].class);

}

3、成员方法

(1) add(E e) 方法

public synchronized booleanadd(E e) {

modCount++; //先将 modCount+1

ensureCapacityHelper(elementCount + 1); //类似 ArrayList 的ensureCapacityInternal,内部实现有所不同

elementData[elementCount++] =e;return true;

}private void ensureCapacityHelper(intminCapacity) {//overflow-conscious code

if (minCapacity - elementData.length > 0)

grow(minCapacity);

}private void grow(intminCapacity) {//overflow-conscious code

int oldCapacity =elementData.length;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(intminCapacity) {if (minCapacity < 0) //overflow

throw newOutOfMemoryError();return (minCapacity > MAX_ARRAY_SIZE) ? //最大容量为Integer.MAX_VALUE

Integer.MAX_VALUE :

MAX_ARRAY_SIZE;

}

已 add(E e) 方法仅作为一个例子,可以看到 Vector 和 ArrayList 的 add 方法实现的方式差不多,不同的是方法前面通过 synchronize 关键字进行修饰,表明对于同一个 Vector 对象,只允许同一条线程对其进行操作。其实,对用 Vector 中所有的 public 访问修饰符的方法(除了spliterator()方法,包含equals()和hashCode()),都直接或者间接地使用了 synchronized 进行修饰,通过这种方式保证线程安全。

(2)subList(int fromIndex, int toIndex)

public synchronized List subList(int fromIndex, inttoIndex) {return Collections.synchronizedList(super.subList(fromIndex, toIndex),this);

}

看一下 Collections.synchronizedList 的实现

public static List synchronizedList(Listlist) {return (list instanceof RandomAccess ?

new SynchronizedRandomAccessList<>(list) :new SynchronizedList<>(list));

}static List synchronizedList(Listlist, Object mutex) {return (list instanceof RandomAccess ?

new SynchronizedRandomAccessList<>(list, mutex) :new SynchronizedList<>(list, mutex));

}//SynchronizedRandomAccessList 和 SynchronizedList 是 Collections的静态内部类,支持同步,也是通过 synchronized 实现,但是是以另一种形式

由于 Vector 实现了 RandomAccess 接口,因此返回的是 SynchronizedRandomAccessList。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值