概述:
1,Collection定義:繼承Iterable,具有泛型功能,Collection集合系統頂級父介面。
2,Collection方法:add、addAll; clear、isEmpty、size; toArray(重載); iterator;contains、containsAll; remove、removeAll、retainAll;
##一,先來看看Collection的定義
#<span style="color: #cc7832">public interface Collection<<span style="color: #507874">E> <span style="color: #cc7832">extends Iterable<<span style="color: #507874">E><br><span style="color: #000000">从定义中我们可以看出Collection是一个带<span style="color: #ff0000">泛型的接口</span>。<br>实现了Iterable接口,也就是说可以使用<span style="color: #ff0000">迭代</span>器。<br>以上两点很重要,其下所有子类均有这两个属性。<br>还有一点大家需要注意Collection集合并<span style="color: #ff0000">没有定义查找</span>的方法。<br><br></span></span></span>
二,我們再來看看Colleciton的自有方法(不含繼承的方法)。
1,關於add和addAll。
兩者都是在集合中加入元素(各自的子類別會具體實現)。
前者是新增單一的元素,後者是可以新增一個實作了Collection的子類別集合。
例如(範例中我特意使用了不同的Collection子類別):
<br>
@Testpublic void testAdd(){ Collection<String> collection = new LinkedList<>();//添加一个对象collection.add("person1"); collection.add("person2"); List<String> list = new ArrayList<>(); list.add("person3"); Set<String> set = new HashSet<>(); set.add("person4");//添加一个Collection集合。 collection.addAll(list); collection.addAll(set); collection.forEach(System.out::println);//打印控制台 }
2,clear、isEmpty、 size。
這幾個方法比較簡單粗暴就放一起了,順便也不給程式碼示範了。
clear清空集合裡的所有元素。
isEmpty判斷集合中是否還有元素,為空時回傳true。
size獲得集合中元素的數量。
3,關於把集合轉換成陣列 toArray。
toArray重載的方法,一個是無參,一個數字需要傳入一個存在的陣列。
咱們先來說無參的Object[] toArray()。它回傳的是一個Object數組,那麼問題就來了。
如果你需要String[] objects = (String[]) collection.toArray(); 這麼做時,他會拋出一個ClassCastException異常。
那麼你可能知道有參數的
下面這段程式碼列印的結果如下,也就是說任何情況下都會回傳一個陣列物件。
當傳遞的數組長度小於集合的size時,會單獨傳回一個新的數組,而且傳遞的數組不填入資料。
當傳遞的陣列等於或大於結合的size時,則填入傳入數組,並傳回該數組。
註:所以一般我們應該採用帶參的方法的第二種情況的使用方式
---印出給定的陣列小於集合的情況-----<br>strings: [null, null]<br>returnStrings: [escore, wym, cl]<br>strings==returnStrings: false<br>---印出給定的陣列等於集合的情況-----<br>strings: [escore, wym, cl]<br>returnStrings: [escore, wym, cl]<br>strings==returnStrings: true<br>---印給定的陣列大於集合的情況--- --<br>strings: [escore, wym, cl, null, null]<br>returnStrings: [escore, wym, cl, null, null]<br>strings==returnStrings: true
Collection<String> collection = new LinkedList<>(); collection.add("escore"); collection.add("wym"); collection.add("cl"); // String[] objects = (String[]) collection.toArray(); //会抛出ClassCastException异常Object[] objects = collection.toArray();//System.out.println(Arrays.toString(objects));String[] strings = new String[2]; String[] returnStrings = collection.toArray(strings); System.out.println("---打印给定的数组小于集合的情况-----"); System.out.println("strings: "+ Arrays.toString(strings)); System.out.println("returnStrings: " + Arrays.toString(returnStrings)); System.out.println(strings == returnStrings); String[] strings2 = new String[collection.size()]; String[] returnStrings2 = collection.toArray(strings2); System.out.println("---打印给定的数组等于集合的情况-----"); System.out.println("strings: "+ Arrays.toString(strings2)); System.out.println("returnStrings: " + Arrays.toString(returnStrings2)); System.out.println(strings2 == returnStrings2); String[] strings3 = new String[5]; String[] returnStrings3 = collection.toArray(strings3); System.out.println("---打印给定的数组大于集合的情况-----"); System.out.println("strings: "+ Arrays.toString(strings3)); System.out.println("returnStrings: " + Arrays.toString(returnStrings3)); System.out.println(strings3 == returnStrings3);
4Iterator<E> iterator()
關於回傳一個迭代器的方法,在這裡我們就不討論了,參考Iterator的內容藉口。
5,contains 、containsAll ;remove 、removeAll、retainAll
contains、和containsAll分別是判斷是否包含一個蒜素,是否包含一個Collection集合。
remove 、removeAll、retainAll 分別是刪除集合中的一個元素、刪除與Collection集合中相等的元素、保留與集合Collection集合中元素相等的元素。
為什麼要把這幾個放在一起呢?
這裡牽涉了equals方法;
也就是說contains是如何判斷是否包含的呢,該方法會將呼叫傳入物件的equals方法逐一與集合中的元素作比較看是否相等。而containsAll方法會放每個元素去呼叫contains方法。
同理remove為什麼知道需要刪除那個元素,也是會去呼叫equals方法逐一的與集合中的元素比較。而removeAll和retainAll會讓傳入的集合元素逐一呼叫remove方法,只不過前者是刪除相同的,後者是保留相同的。
(關於Java集合的部分,我會全部分享在《java基礎集合架構》的分類中)
以上是Java中Colleciton的詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!