• collections


    

    操作Collection以及Map该工具:Collections

    reverse(List):逆转 List 元素的顺序
    shuffle(List):对 List 合元素进行随机排序
    sort(List):依据元素的自然顺序对指定 List 集合元素按升序排序
    sort(List。Comparator):依据指定的 Comparator 产生的顺序对 List 集合元素进行排序
    swap(List,int, int):将指定 list 集合中的 i 处元素和 j 处元素进行交换

    Object max(Collection):依据元素的自然顺序,返回给定集合中的最大元素
    Object max(Collection,Comparator):依据 Comparator 指定的顺序。返回给定集合中的最大元素
    Object min(Collection)
    Object min(Collection,Comparator)
    int frequency(Collection,Object):返回指定集合中指定元素的出现次数
    void copy(List dest,List src):将src中的内容拷贝到dest中
     //实现List的复制
     //List list1 = new ArrayList();//错误的实现方式
     List list1 = Arrays.asList(new Object[list.size()]);
     Collections.copy(list1, list);

    boolean replaceAll(List list,Object oldVal,Object newVal):使用新值替换 List 对象的全部旧值

    //通过例如以下的方法保证集合的线程安全性。


     synchronizedCollection(Collection<T> c) :Returns a synchronized (thread-safe) collection backed by the specified collection.
     synchronizedList(List<T> list) :Returns a synchronized (thread-safe) list backed by the specified list. 
     synchronizedMap(Map<K,V> m) :Returns a synchronized (thread-safe) map backed by the specified map. 
     synchronizedSet(Set<T> s)  :返回线程安全set集。

    版权声明:本文博主原创文章,博客,未经同意不得转载。

  • 相关阅读:
    Java 匿名内部类
    【嘎】数组-搜索插入位置
    【嘎】数组-1266. 访问所有点的最小时间
    【嘎】数组-1313. 解压缩编码列表
    【嘎】数组-1431. 拥有最多糖果的孩子
    element-ui下拉多选报错Error in event handler for "handleOptionClick": "TypeError: value.push is not a function"
    【嘎】数组-有效的山脉数组
    【嘎】数组-打家劫舍
    【嘎】字符串-字符串中的第一个唯一字符
    linux
  • 原文地址:https://www.cnblogs.com/blfshiye/p/4889480.html
Copyright © 2020-2023  润新知