EndaLin / EndaLin.github.io

基于Hexo + NexT 搭建的个人博客
https://endalin.github.io/
1 stars 0 forks source link

ArrayList源码学习 | Enda Lin #15

Open EndaLin opened 5 years ago

EndaLin commented 5 years ago

https://wt-git-repository.github.io/2019/05/29/ArrayList%E6%BA%90%E7%A0%81%E5%AD%A6%E4%B9%A0/#more

ArrayList简介1public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, Serializable ArrayList 底层是数组队列, 属于动态数组, 可以根据实际的需要去动态地调整数组的大小 ArrayList 继承了

EndaLin commented 5 years ago

每天一小时的源码阅读