Java集合工具類 Collections

2021-09-19 17:36:06 字數 1270 閱讀 6059

sort方法:使用sort方法可以根據元素的自然順序 對指定列表按公升序進行排序。

reverse方法:使用reverse方法可以根據元素的自然順序 對指定列表按降序進行排序。

**:

public static void main(string args) ;

for (int i = 0; i < array.length; i++)

collections.sort(list);

system.out.println("*****=sort排列*****");

for (int i = 0; i < array.length; i++)

}

輸出:

==sort排列

=1.0

2.03.0

4.05.0

可以看出上面的排序符合我們的要求,再看下面**:

public static void main(string args) ;

for (int i = 0; i < array.length; i++)

system.out.println("==reverse排列

=");

collections.reverse(list);

for (int i = 0; i < array.length; i++)

}輸出:

==reverse排列

=5.0

4.03.0

2.01.0

這個結果無法接受,但如果先用sort排序,再用reverse排序,又好了:

public static void main(string args) ;

for (int i = 0; i < array.length; i++)

collections.sort(list);

system.out.println("==sort排列

=");

for (int i = 0; i < array.length; i++)

system.out.println("==reverse排列

=");

collections.reverse(list);

for (int i = 0; i < array.length; i++)

}輸出結果:

==sort排列

=1.0

2.03.0

4.05.0

==reverse排列

=5.0

4.03.0

2.01.0

java集合框架的乙個根介面Collection

對外的介面 介面的實現 對集合運算的演算法。collection是list set queue介面的父介面。方法 add 向集合的尾部追加指定的元素 addall 將指定集合中的元素都新增到此集合中 clear 移除集合中的所有操作 contains 如果此集合中包含指定元素,則返回true con...

集合工具類

collections 多數都是靜態類,由類名呼叫 sort max min reverse copy collections.binarysearch list,25 二分查詢法針對的是公升序排序的集合,如果沒有排序,就不能用二分查詢法,找到了就返回索引。一般與sort聯用。先sort,在二分查詢...

Java工具類 Java檔案工具類

public class fileutils 讀取檔案並作為byte返回 param file 目標檔案 return throws ioexception public static byte readfileasbytes file file throws ioexception 讀取檔案並作為...