Vector注意事项

Vector的基本介绍

  1. Vector类的定义说明
    Vector注意事项
  2. Vector底层也是一个对象数组,protected Object[] elementData;
  3. Vector是线程同步的,即线程安全,Vector类的操作方法带有synchronized
public synchronized E get(int index) {
        if (index >= elementCount)
            throw new ArrayIndexOutOfBoundsException(index);

        return elementData(index);
    }
  1. 在开发中,需要线程同步安全时,考虑使用Vector
上一篇:单例模式创建


下一篇:python 单例模式