* The {@code Vector} class implements a growable array of
* objects. Like an array, it contains components that can be
* accessed using an integer index. However, the size of a
* {@code Vector} can grow or shrink as needed to accommodate
* adding and removing items after the {@code Vector} has been created.

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

http://www.cnblogs.com/wanlipeng/archive/2010/10/21/1857791.html

相关文章:

  • 2022-12-23
  • 2021-04-09
  • 2021-07-27
  • 2021-05-20
  • 2021-12-10
  • 2022-01-13
  • 2021-11-12
  • 2021-07-20
猜你喜欢
  • 2022-01-30
  • 2022-12-23
  • 2021-10-23
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案