cuiter  

2021年4月3日

摘要: ArrayList扩容机制——源码探究 public static void main(String[] args) { Collection col = new ArrayList(); for (int i = 0; i <= 10; i++) { col.add(i); } } //对上面这段 阅读全文
posted @ 2021-04-03 10:56 jiaotong 阅读(71) 评论(0) 推荐(0)