摘要: LinkedList的源码分析 添加元素 节点类 private static class Node<E> { E item; Node<E> next; Node<E> prev; Node(Node<E> prev, E element, Node<E> next) { this.item = 阅读全文
posted @ 2023-10-24 09:37 Gjq- 阅读(14) 评论(0) 推荐(0)
摘要: Vector源码分析 成员变量 /** * The array buffer into which the components of the vector are * stored. The capacity of the vector is the length of this array bu 阅读全文
posted @ 2023-10-24 09:35 Gjq- 阅读(18) 评论(0) 推荐(0)