1.存儲對象可以考慮:①數(shù)組 ②集合
2.數(shù)組存儲對象的特點:Student[] stu = new Student[20]; stu[0] = new Student();...
>弊端:①一旦創(chuàng)建苍蔬,其長度不可變洽损。②真實的數(shù)組存放的對象的個數(shù)是不可知的。
3.集合
>Collection接口
>|------List接口:存儲有序的天试,可以重復的元素
>|------ArrayList(主要的實現(xiàn)類)萧朝、 LinkedList(頻繁的插入腊尚、刪除操作)、Vector(古老的實現(xiàn)類庵佣、線程安全的)
>|------Set接口:存儲無序的歉胶,不可重復的元素
>|------HashSet、LinkedHashSet巴粪、TreeSet
>Map接口:存儲“鍵-值”對的數(shù)據(jù)
>|------HashMap通今、LinkedHashMap粥谬、TreeMap、Hashtable(子類:Properties)
例子:
package com.atguigu.java1;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;
import org.junit.Test;
public class TestCollection {
@Test
public void testCollection3(){
Collection coll = new ArrayList();
coll.add(123);
coll.add("AA");
coll.add(new Date());
coll.add("BB");
coll.add(new Person("MM",23));
Collection coll1 = new ArrayList();
coll1.add(123);
coll1.add(new String ("AA"));
//10.removeAll(Collection coll):從當前集合中刪除包含在coll中的元素
coll.removeAll(coll1);
System.out.println(coll);//[Tue Jan 05 10:35:12 CST 2016, BB, Person [name=MM, age=23]]
//11.equals(Object obj):判斷集合中所有的元素是否完全相等
Collection coll2 = new ArrayList();
coll2.add(123);
coll2.add(new String ("AA"));
System.out.println(coll1.equals(coll2));//true
//12.hashCode
System.out.println(coll.hashCode());//-864324383
System.out.println();
//13.toArray():將集合轉(zhuǎn)化為數(shù)組
Object[] obj = coll.toArray();
for (int i = 0; i < obj.length; i++) {
System.out.println(obj[i]);
}
//14.iterator():返回一個Iterator接口實現(xiàn)類的對象,進而實現(xiàn)集合的遍歷辫塌!
Iterator iterator = coll.iterator();
//方式一:不用
/*System.out.println(iterator.next());
System.out.println(iterator.next());
System.out.println(iterator.next());*/
//方式二:不用
/*for(int i = 0; i < coll.size();i++){
System.out.println(iterator.next());
}*/
//方式三:使用
while(iterator.hasNext()){
System.out.println(iterator.next());
}
}
@Test
public void testCollection2(){
Collection coll = new ArrayList();
coll.add(123);
coll.add("AA");
coll.add(new Date());
coll.add("BB");
Person p = new Person("MM",23);
coll.add(p);
System.out.println(coll);
//6.contains(Object obj):判斷集合中是否包含指定的obj元素漏策。如果包含,返回true臼氨。反之返回false
boolean b1 = coll.contains(123);
b1 = coll.contains("AA");
System.out.println(b1);//true
boolean b2 = coll.contains(p);
System.out.println(b2);//true
//7.containsAll(Connection coll):判斷當前集合中是否包含coll中所有的元素
Collection coll1 = new ArrayList();
coll1.add(123);
coll1.add("AA");
boolean b3 = coll.containsAll(coll1);
System.out.println("#"+b3); //#true
//8.retainAll(Collection coll):求當前集合與coll的共有的元素掺喻,返回給當前集合
coll.retainAll(coll1);
System.out.println(coll);
//9.remove(Object obj);刪除集合中的obj元素。若刪除成功储矩,返回true感耙,否則返回false。
boolean b4 = coll.remove("BB");
System.out.println(b4);
}
@Test
public void testCollection1(){
Collection coll = new ArrayList();
//1.size():返回集合中元素的個數(shù)
System.out.println(coll.size());//輸出結(jié)果0
//2.add(Object obj):向集合中添加一個元素
coll.add(123);
coll.add("AA");
coll.add(new Date());
coll.add("BB");
System.out.println(coll.size());//輸出結(jié)果4
//3.addAll(Collection coll):將形參coll1中包含的所有元素添加到當前集合coll中
Collection coll1 =Arrays.asList(1,2,3);//asList()將數(shù)組轉(zhuǎn)化成集合
coll.addAll(coll1);
System.out.println(coll.size());
//查看集合元素
System.out.println(coll);//輸出結(jié)果[123, AA, Wed Dec 30 17:58:01 CST 2015, BB, 1, 2, 3]
//4.isEmpty():判斷集合是否為空
System.out.println(coll.isEmpty());//false
//5.clear():清空所有元素
coll.clear();
System.out.println(coll.isEmpty());//true
}
}