摘要: 原文:http://wiki.jikexueyuan.com/project/java-collection/linkedhashset.html LinkedHashSet 概述 思考了好久,到底要不要总结 LinkedHashSet 的内容 = = 我在之前的博文中,分别写了 HashMap 和 阅读全文
posted @ 2018-04-02 14:14 丨逸仙 阅读(273) 评论(0) 推荐(0)
摘要: 原文:https://blog.csdn.net/GongchuangSu/article/details/51136995 阅读全文
posted @ 2018-04-02 11:25 丨逸仙 阅读(90) 评论(0) 推荐(0)
摘要: 原文:https://blog.csdn.net/GongchuangSu/article/details/51527042 LinkedList简介 LinkedList 是一个继承于AbstractSequentialList的双向链表。它也可以被当作堆栈、队列或双端队列进行操作。 Linked 阅读全文
posted @ 2018-04-02 10:33 丨逸仙 阅读(214) 评论(0) 推荐(0)
摘要: 原文: https://blog.csdn.net/GongchuangSu/article/details/51514380 Iterator接口是对collection进行迭代的迭代器,ListIterator接口是其子接口。它们都是遍历集合的工具。 Collection依赖于Iterator, 阅读全文
posted @ 2018-04-02 10:24 丨逸仙 阅读(261) 评论(0) 推荐(0)
摘要: 原文地址,转载请注明出处:https://blog.csdn.net/GongchuangSu/article/details/51514389 ArrayList简介 ArrayList是一个其容量能够动态增长的动态数组。它继承了AbstractList,实现了List、RandomAccess, 阅读全文
posted @ 2018-04-02 10:14 丨逸仙 阅读(128) 评论(0) 推荐(0)