基于动态数组的集合类型Vector、ArrayList

时间:2023-02-08 17:01:09

Arrays常用方法基于动态数组的集合类型Vector、ArrayList

Vextor,ArrayList

  实现了Collection接口

  能够存储相同类型的对象(支持多态)

  不能存储基本数据类型;(要存的话需要转换为类对象比如int-->Integer)

  容量根据空间自动扩充;

  Vector:集合框架中的遗留类,线程安全集合;(过时)

  ArrayList方法是非同步的效率高;可以通过Java.util.concurrent包(同步包装器)变成线程安全的;

基于动态数组的集合类型Vector、ArrayList