bigcoder84 / blog_comment

博客系统评论,博客首页:https://www.bigcoder.cn
0 stars 0 forks source link

深入解析LinkedHashMap - 听到微笑的博客 #24

Open bigcoder84 opened 5 years ago

bigcoder84 commented 5 years ago

https://www.bigcoder.cn/article/59694.html#more

LinkedHashMap是HashMap的一个子类,保存了记录的插入顺序,在用Iterator遍历LinkedHashMap时,先得到的记录肯定是先插入的,也可以在构造时带参数,按照访问次序排序。