摘要: LinkedList的基本结构是双向链接的直线结构。 链表的构造函数有两个,其中空构造函数什么都没做,就是一个空实现。 /** * Constructs an empty list. */ public LinkedList() { } /** * Constructs a list contain 阅读全文
posted @ 2021-03-30 15:08 =凌晨= 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Vector类的基本属性 protected Object[] elementData; /** * The number of valid components in this {@code Vector} object. * Components {@code elementData[0]} t 阅读全文
posted @ 2021-03-30 09:49 =凌晨= 阅读(67) 评论(0) 推荐(0) 编辑