ArrayList和LinkedList源码解析

ArrayList和LinkedList源码解析,第1张

ArrayList和LinkedList源码解析

目录

ArrayList

linkedList


ArrayList

继承关系

public abstract class AbstractCollection implements Collection 
public abstract class AbstractList extends AbstractCollection implements List 
public class ArrayList extends AbstractListimplements List, RandomAccess, Cloneable, java.io.Serializable 

查询

             E get(int index);
             public E get(int index) {
                  Objects.checkIndex(index, size);//校验长度
                  return elementData(index);
              }
              @ForceInline
              public static int checkIndex(int index, int length) {
                  return Preconditions.checkIndex(index, length, null);
              }
   

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5722244.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-18
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存