摘要: Debug LinkedList源码 前置知识 LinkedList基于链表,LinkedList的Node节点定义 成员变量 //链表中元素的数量 transient int size = 0; /** * 链表的头节点:用于遍历 */ transient Node<E> first; /** * 阅读全文
posted @ 2020-07-26 18:24 just-reboot 阅读(272) 评论(0) 推荐(0) 编辑