摘要: 同步 他的实现类似与ArrayList,但是使用了synchronized进行同步 public synchronized boolean add(E e) { modCount++; add(e, elementData, elementCount); return true; } private 阅读全文
posted @ 2021-04-10 17:26 +D 阅读(69) 评论(0) 推荐(0) 编辑