Collection集合(一)
阿新 • • 發佈:2019-02-05
一、集合的引入
在沒有接觸集合之前
需求:我有5個學生,5個學生有自己的姓名,年齡,遍歷當前學生陣列,獲取到每一個學生的資訊
建立物件陣列:可以儲存物件的陣列
1)自定義類:Studentname,age
2)在測試類中:建立一個數組,可以儲存Stduent型別的
3)根據的提供長度,分別建立5個具體的學生物件
4)賦值並且遍歷
public class Student { private String name ; private int age ; public Student() { super(); } public Student(String name, int age) { super(); this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } @Override public String toString() { return "Student [name=" + name + ", age=" + age + "]"; } }
集合的由來?public class ObjectArrayDemo { public static void main(String[] args) { //建立一個數組,可以儲存Student型別 (物件陣列) //建立陣列的格式:int[] arr= new int[長度] ; Student[] students = new Student[5] ; //需要建立5個學生物件 Student s1 = new Student("高圓圓", 27) ; Student s2 = new Student("王力巨集", 30) ; Student s3 = new Student("唐嫣", 29) ; Student s4 = new Student("克勞澤",35) ; Student s5 = new Student("拉姆", 36) ; //賦值 students[0] = s1 ; students[1] = s2 ; students[2] = s3 ; students[3] = s4 ; students[4] = s5 ; //遍歷學生陣列 for(int x = 0 ; x < students.length ; x ++) { Student s = students[x] ; System.out.println(s.getName()+"----"+s.getAge()); } } }
學生的面嚮物件語言,面嚮物件語言對事物的描述是通過物件體現的,那麼需求需要來儲存多個物件.
要儲存多個物件,不能使用基本型別的變數,需要使用容器型別的變數? 之前學習過的容器變數:陣列 ,字串緩衝區(StringBuffer)
對於字串緩衝區來說,在記憶體中始終儲存的是字串,不能滿足要求;陣列呢,陣列的長度是固定的,不符合長度變化的要求,所以Java提供了一個Collection 集合。
首先來看一到面試題:陣列和集合的區別?
1)長度區別:
陣列長度固定
集合長度可變
2)內容的區別
陣列可以儲存同一種類型的元素
集合可以儲存多種型別的元素
3)儲存型別的區別
陣列:可以儲存基本型別,也可以儲存引用型別String[] str = {"hello","world","java",100} ; 錯誤的
集合:只能儲存引用型別
集合Collection:子介面有兩個,兩個子介面分別對應多個子實現類,多個集合資料結構不同,但是他們有共性內容,將共性內容抽取出來,就可以集合繼承體系圖!
資料結構:資料的儲存方式
Collection:
Collection 層次結構 中的根介面。Collection 表示一組物件,這些物件也稱為 collection 的元素。一些 collection 允許有重複的元素,而另一些則不允許。一些 collection 是有序的,而另一些則是無序的,這個我們後面會細說。
JDK 不提供此介面的任何直接 實現:它提供更具體的子介面,更具體的實現類
基本功能:
新增功能:
boolean add(Object e)
刪除功能:
void clear() :刪除集合中所有元素(暴力刪除)
boolean remove(Object o):刪除集合中的指定元素
判斷功能:
boolean contains(Object o):集合中是否包含指定的元素
獲取功能:
int size() :獲取集合中的元素數
轉換功能:
Object[] toArray() :將集合轉換成陣列
public class CollectionDemo {
public static void main(String[] args) {
//建立集合物件
//Collection c = new Collecton() ; //不能例項化
Collection c = new ArrayList() ;
System.out.println(c);
c.add("hello") ;
c.add("world") ;
c.add("java") ;
System.out.println("c:"+c) ;
//刪除功能:c.clear();
System.out.println("remove():"+c.remove("java"));
System.out.println("c:"+c);
//boolean contains(Object o):集合中是否包含指定的元素
System.out.println("contains():"+c.contains("android"));
System.out.println("contains():"+c.contains("hello"));
System.out.println(c.size());
//boolean isEmpty() :判斷集合是否為空
System.out.println(c.isEmpty());
}
}
Colleciton的集合的高階功能:
boolean addAll(Collection c) :新增一個集合中的所有元素boolean removeAll(Collection c):刪除一個算是刪除
boolean containsAll(Collection c):包含所有元素算是包含
boolean retainAll(Collection c):A集合對B集合取交集,交集的元素要去A集合中,boolean返回值表達的A集合的元素是否發生變化,如果發生變化,則返回true,否則,返回false
public class CollectionDemo {
public static void main(String[] args) {
//建立Collection集合1
Collection c1 = new ArrayList() ;
//新增元素
c1.add("abc1") ;
c1.add("abc2") ;
c1.add("abc3") ;
c1.add("abc4") ;
//建立第二個集合
Collection c2 = new ArrayList() ;
c2.add("abc1") ;
c2.add("abc2") ;
c2.add("abc3") ;
c2.add("abc4") ;
// c2.add("abc5") ;
// c2.add("abc6") ;
// c2.add("abc7") ;
// System.out.println(c1.addAll(c2));
// System.out.println(c1.removeAll(c2));
// System.out.println(c1.containsAll(c2));
System.out.println("retainAll():"+c1.retainAll(c2));
System.out.println("c1:"+c1);
System.out.println("c2:"+c2);
}
}
這個例子程式不太好靜態展示出來,大家可以下去自己試試。
toArray方法的練習:
public class CollectionDemo2 {
public static void main(String[] args) {
//建立一個集合物件
Collection c = new ArrayList() ;
//給集合中新增元素
c.add("hello") ;
c.add("world") ;
c.add("java") ;
c.add("JavaEE") ;
//需要去轉換
//Object[] toArray()
//將集合轉成陣列
Object[] objs = c.toArray() ;
for(int x =0 ; x < objs.length ; x ++) {
//System.out.println(objs[x]);
//需求:輸出不同的元素的同時,還需要輸出字串元素的長度
//System.out.println(objs[x]+"----"+objs[x].length());
/**
*上面程式碼有問題
* length():屬於String型別的特有功能,可以獲取字串長度
*/
String str = (String) objs[x] ; //相當於:向下轉型
System.out.println(str+"----"+str.length());
}
}
}
重新用Collection改進一下剛才用物件陣列寫的那個Student程式:(Student還和之前的一樣,這裡就不再寫了)
public class CollectionDemo {
public static void main(String[] args) {
//建立一個集合物件
Collection c = new ArrayList() ;
//建立5個具體學生物件
Student s1 = new Student("高圓圓", 27) ;
Student s2 = new Student("楊桃", 28) ;
Student s3 = new Student("王力巨集", 35) ;
Student s4 = new Student("周星馳", 60) ;
Student s5 = new Student("成龍", 55) ;
//新增到集合中
c.add(s1) ;
c.add(s2) ;
c.add(s3) ;
c.add(s4) ;
c.add(s5) ;
//轉換陣列
Object[] objs = c.toArray() ;
//遍歷
for(int x = 0 ; x < objs.length ;x ++) {
// System.out.println(objs[x]);
//需求:需要的通過getXXX方法獲取學生資訊
Student s = (Student) objs[x] ; //向下轉型
System.out.println(s.getName()+"----"+s.getAge());
}
}
}
集合剩下的部分我們下次再講~