摘要:
1.Map接口public interface Map将键映射到值的对象。一个映射不能包含重复的键;每个键最多只能映射到一个值。2.HashMap、Hashtable、TreeMappublic class HashMapextends AbstractMapimplements Map, Clon... 阅读全文
摘要:
1.集合输出很多情况下我们需要把集合的内容进行输出,也就是遍历集合。遍历集合的方式有以下几种:1.Iterator2.ListIterator3.Enumeration(枚举方式,比较老一般不用)4.foreach5.传统for循环其中Iterator的使用率最高。public class Coll... 阅读全文