程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 類Collections的靜態方法,類collections靜態

類Collections的靜態方法,類collections靜態

編輯:JAVA綜合教程

類Collections的靜態方法,類collections靜態


類Collections的靜態方法

此類完全由在 collection 上進行操作或返回 collection 的靜態方法組成。

排序

    static <T extends Comparable<? super T>>  void  sort(List<T> list)

    static <T>   void   sort(List<T> list, Comparator<? super T> c)

交換

    static void   swap(List<?> list,  int i, int j)

二分搜索法

    static <T> int binarySearch(List<? extends Comparable<? super T>> list, T key)

    static <T> int binarySearch(List<? extends T> list, T key, Comparator<? super T> c)

獲取最大值

    static <T extends Object & Comparable<? super T>> T max(Collection<? extends T> coll)

     根據元素的自然順序,返回給定 collection 的最大元素。
     static <T> T max(Collection<? extends T> coll, Comparator<? super T> comp)
    根據指定比較器產生的順序,返回給定 collection 的最大元素。

獲取最小值

    static <T extends Object & Comparable<? super T>> T  min(Collection<? extends T> coll)

     根據元素的自然順序,返回給定 collection 的最大元素。
     static <T> T min(Collection<? extends T> coll, Comparator<? super T> comp)
    根據指定比較器產生的順序,返回給定 collection 的最大元素。

反轉順序

    static <T> Comparator<T> reverseOrder() 

     返回一個比較器,它強行逆轉實現了 Comparable 接口的對象 collection 的自然順序。
     static <T> Comparator<T> reverseOrder(Comparator<T> cmp)
     返回一個比較器,它強行逆轉指定比較器的順序。

替換

    static <T> boolean replaceAll(List<T> list, T oldVal, T newVal)

    使用另一個值替換列表中出現的所有某一指定值。

    static <T> void fill(List<? super T> list, T obj)

    使用指定元素替換指定列表中的所有元素。

 

隨機置換

    static void shuffle(List<?> list)

    使用默認隨機源對指定列表進行置換。

    static void shuffle(List<?> list, Random rnd)
    使用指定的隨機源對指定列表進行置換。

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved