ArrayList相关面试题
Posted zhangjin1120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ArrayList相关面试题相关的知识,希望对你有一定的参考价值。
- ArrayList线程不安全,线程安全的列表有Vector,Collections.synchronizedList(), CopyOnWriteArrayList,线程不安全的list有:ArrayList、LinkedList。
- ArrayList扩容倍数是1.5倍。
int newCapacity = oldCapacity + (oldCapacity >> 1);
以上是关于ArrayList相关面试题的主要内容,如果未能解决你的问题,请参考以下文章