集合学习(四):Collections工具类
方法 描述 addAll(Collection<? super T> c, T... elements) 向集合中添加多个元素 sort(List<T> list) 对列表进行自然顺序排序(需要元素实现 Comparable 接口) sort(List<T> list, Comparator<? s
集合学习(三):Map双列集合
1. Map接口常用方法 方法 描述 put(K key, V value) 添加或更新键值对 putAll(Map<? extends K, ? extends V> m) 将指定映射中的所有键值对复制到当前映射中 get(Object key) 获取指定键对应的值 containsKey(Obj
集合学习(二):Collection单列集合
1. Collection接口方法的使用 以ArrayList为例:Collection<String> collection = new ArrayList<>(); 方法 描述 add(E e) 向集合中添加元素 addAll(Collection<? extends E> c) 将指定集合中的