Collection和Collections的區別及Collections常用方法

本文包含以下打鉤知識點:

  • [x] Collections類是什么?Collection 和 Collections的區別?
  • [ ] 為什么 Collection 不從 Cloneable 和 Serializable 接口繼承
  • [ ] 說出幾點 Java 中使用 Collections 的最佳實踐?

Collection和Collections的區別

Collections

java.util.Collections,是不屬于java的集合框架的,它是集合類的一個工具類/幫助類此類不能被實例化, 服務于java的Collection框架。

包含有關集合操作的靜態多態方法,實現對各種集合的搜索、排序、線程安全等操作。如:

image
image

常用的有:

(1)排序 sort(Collection)

如Collections.sort(List<T> list),Collections.sort(List<T> list, Comparator<? super T> c)。

使用sort方法可以根據元素的自然順序對指定列表按升序進行排序。列表中的所有元素都必須實現Comparable接口, 而且必須是使用指定比較器可相互比較的。

@SuppressWarnings("unchecked")
public static <T extends Comparable<? super T>> void sort(List<T> list) {
    list.sort(null);
}

@SuppressWarnings({"unchecked", "rawtypes"})
public static <T> void sort(List<T> list, Comparator<? super T> c) {
    list.sort(c);
}

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        Collections.sort(list);
        System.out.println(list);
    }
}

運行結果:

[five, four, one, three, two]   //(按字母排序)

(2)混排 shuffle(Collection)

如Collections.shuffle(List<?> list)

基于隨機源的輸入隨機排序該List,這個算法對實現一個碰運氣的游戲非常有用,在生成測試案例時也十分有用。

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        Collections.shuffle(list);
        System.out.println(list);
    }
}

運行結果:

[three, five, four, one, two]

(3)反轉 reverse(Collection)

如Collections.reverse(List<?> list)
使用reverse()反轉集合中元素的順序

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        Collections.reverse(list);
        System.out.println(list);
    }
}

運行結果:

[five, four, three, two, one]

(4)替換所有元素 fill(List list,Object o)

使用指定元素替換集合中的所有元素。

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        Collections.fill(list, "zero");
        System.out.println(list);
    }
}

運行結果:

[zero, zero, zero, zero, zero]

(5)拷貝 copy(List list1,List list2)

將集合list2中的元素全部復制到list1中,并且覆蓋相應索引的元素。目標list1至少與源list2一樣長。

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list1 = Arrays.asList("one two three four five".split(" "));
        List list2 = Arrays.asList("一 二 三 四 五".split(" "));
        Collections.copy(list1, list2);
        System.out.println(list1);
    }
}

運行結果

[一, 二, 三, 四, 五]

(6)rotate(List list,int m)

根據指定的距離m循環移動列表中的元素。集合中的元素向后移m個位置,在后面被遮蓋的元素循環到前面來。

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list1 = Arrays.asList("one two three four five".split(" "));
        Collections.rotate(list1, 2);
        System.out.println(list1);
    }
}

運行結果:

[four, five, one, two, three]

(7)最小(大)元素 min(),max()

根據指定比較器產生的順序,返回給定Collection的最小(大)元素。

min(Collection),min(Collection,Comparator)
max(Collection),max(Collection,Comparator)

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = new ArrayList();
        list.add(10);
        list.add(40);
        list.add(20);
        list.add(50);
        System.out.println(Collections.min(list));
        System.out.println(Collections.max(list));
    }
}

運行結果:

10     
50

(8)indexOfSublist(List list,List sublist)

查找sublist在list中首次出現位置的索引。返回指定源列表中第一次出現指定目標列表的起始位置。

簡單示例:

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        List subList=Arrays.asList("three four five".split(" "));
        System.out.println(Collections.indexOfSubList(list,subList));

    }
}

運行結果:

2

(9)lastIndexOfSublist(List list,List sublist)

返回指定列表中最后一次出現指定目標列表的起始位置。

(10)swap(List list,int m,int n)

交換集合中指定元素索引m,n的位置。

public class Test {
    public static void main(String[] args) {
        List list = Arrays.asList("one two three four five".split(" "));
        Collections.swap(list, 2, 3);
        System.out.println(list);
    }
}

運行結果:

[one, two, four, three, five]

Collection

Collection是最基本的集合接口,一個Collection代表一組Object,即Collection的元素。它的直接繼承接口有List,Set和Queue。

Collection接口,Set、List接口參考
Java中集合類框架及基本接口

參考資料:

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 227,428評論 6 531
  • 序言:濱河連續發生了三起死亡事件,死亡現場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發現死者居然都...
    沈念sama閱讀 98,024評論 3 413
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 175,285評論 0 373
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 62,548評論 1 307
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,328評論 6 404
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
    開封第一講書人閱讀 54,878評論 1 321
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 42,971評論 3 439
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 42,098評論 0 286
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當地人在樹林里發現了一具尸體,經...
    沈念sama閱讀 48,616評論 1 331
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 40,554評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發現自己被綠了。 大學時的朋友給我發了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 42,725評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,243評論 5 355
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發生泄漏。R本人自食惡果不足惜,卻給世界環境...
    茶點故事閱讀 43,971評論 3 345
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,361評論 0 25
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,613評論 1 280
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,339評論 3 390
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 47,695評論 2 370

推薦閱讀更多精彩內容

  • Spring Cloud為開發人員提供了快速構建分布式系統中一些常見模式的工具(例如配置管理,服務發現,斷路器,智...
    卡卡羅2017閱讀 134,776評論 18 139
  • //Clojure入門教程: Clojure – Functional Programming for the J...
    葡萄喃喃囈語閱讀 3,708評論 0 7
  • Scala的集合類可以從三個維度進行切分: 可變與不可變集合(Immutable and mutable coll...
    時待吾閱讀 5,841評論 0 4
  • 集合框架體系概述 為什么出現集合類?方便多個對象的操作,就對對象進行存儲,集合就是存儲對象最常用的一種方法. 數組...
    acc8226閱讀 779評論 0 1
  • Collection ├List │├LinkedList │├ArrayList │└Vector │└Stac...
    AndyZX閱讀 884評論 0 1