摘要: 1.hashMap为什么要扩容? 1) 根本原因:hashMap底层结构有数组,因为数组一旦创建,其长度不会发生改变. 例如: 创建长度为3的数组int[] i=new int[3]; i[0]=1; i[1]=2; i[2]=3; 抛异常:ArrayIndexOutOfBoundsExceptio 阅读全文
posted @ 2022-06-04 18:07 姜森尧 阅读(164) 评论(0) 推荐(0) 编辑