Java面试
java相关面试
技术路上的苦行僧
不怕别人天赋比你高,就怕别人比你更努力
展开
-
Java面试题总结(3)之ArrayList 中的modCount作用
/** * The number of times this list has been <i>structurally modified</i>. * Structural modifications are those that change the size of the * list, or otherwise perturb it ...原创 2020-01-03 17:27:25 · 437 阅读 · 0 评论 -
Java面试题总结(2)之ArrayList 为什么线程不安全
我们先来看看 ArrayList 的 add 操作源码。 public boolean add(E e) { ensureCapacityInternal(size + 1); elementData[size++] = e; return true; } ArrayList 的不安全主要体现在两个方面。 其一 elementD...原创 2020-01-03 11:10:36 · 653 阅读 · 0 评论 -
Java面试题总结(一)之Java中ArrayList循环遍历并删除元素的陷阱
面试题:删除列表中等于bb的元素 先看测试案例: import java.util.ArrayList; public class ArrayListRemove { public static void main(String[] args) { ArrayList<String> list = new A...原创 2020-01-02 00:53:48 · 326 阅读 · 0 评论