Collection集合常用方法執行示例

2022-09-18 15:03:11 字數 1687 閱讀 2013

void clear() :清空集合中的元素 (新增的元素在前面**中)

//

void clear() : 清空集合中的元素

c.clear();

//輸出集合物件

system.out.println(c);

/*執行結果:

*/

boolean contains(object o) :判斷集合中是否存在指定的元素

//

boolean contains(object o):判斷集合中是否存在指定的元素

system.out.println(c.contains("world"));

system.out.println(c.contains("j**aee"));

//輸出集合物件

system.out.println(c);

/*執行結果:

true //集合中存在元素world

false //集合中沒有元素j**aee

[hello, world, j**a]

*/

boolean isempty():判斷集合是否為空

//

boolean isempty():判斷集合是否為空

system.out.println(c.isempty());

system.out.println(c);

c.clear();

system.out.println(c.isempty());

//輸出集合物件

system.out.println(c);

/*執行結果:

false // 不為空

[hello, world, j**a]

true

*/

int size() : 集合的長度,也就是集合中元素的個數

//

int size() : 集合的長度,也就是集合中元素的個數

system.out.println(c.size());

//輸出集合物件

system.out.println(c);

/*執行結果:

3[hello, world, j**a]

*/

單列集合Collection常用方法(二)

list set和collection是繼承關係,collection介面中的方法在list set方法中都可以繼承使用,同時list set介面還有屬於自己的特有方法。list介面通過arraylist類實現,set介面通過hashset類實現。list介面特點 1 有序儲存 按什麼順序存就按什麼...

集合 Collection集合總結

list有序,可重複 abstractlist 父類abstractcollection抽象類,實現了list介面 arraylist 父類abstractlist 底層資料結構是陣列,查詢快,增刪慢。執行緒不安全,不同步,效率高 vector 父類abstractlist 底層資料結構是陣列,查詢...

Collection集合,List集合

一 collection集合 a collection 集合 單身漢集合 list 特點 有序,可重複,有索引 arraylist 重點掌握 linkedlist 儲存的元素不可重複,訪問順序一致 set 無序,元素不可重複,元素無索引 hashset 重點掌握 linkedhashset tree...