层次一:选择合适的集合类去实现数据的保存,调用其内部的相关方法。
层次二:不同的集合类底层的数据结构为何?如何实现数据的操作的:增删改查等。
说明:此时的存储,主要指的是内存层面的存储,不涉及到持久化的存储(.txt,.jpg,.avi,数据库中)
一旦初始化以后,其长度就确定了。
数组一旦定义好,其元素的类型也就确定了。我们也就只能操作指定类型的数据了。
比如:String[] arr;int[] arr1;Object[] arr2;
|----List接口:存储序的、可重复的数据。 -->“动态”数组
|----ArrayList、LinkedList、Vector
|----Set接口:存储无序的、不可重复的数据 -->高中讲的“集合”
|----HashSet、LinkedHashSet、TreeSet
add(Object obj)
,addAll(Collection coll)
,size()
isEmpty()
,clear()
;contains(Object obj)
,containsAll(Collection coll)
,remove(Object obj)
,removeAll(Collection coll)
,retainsAll(Collection coll)
,equals(Object obj)
;hashCode()
,toArray()
,iterator();
//集合 --->数组:toArray()
Object[] arr = coll.toArray();
for(int i = 0;i < arr.length;i++){
System.out.println(arr[i]);
}
//拓展:数组 --->集合:调用Arrays类的静态方法asList(T ... t)
List<String> list = Arrays.asList(new String[]{"AA", "BB", "CC"});
System.out.println(list);
List arr1 = Arrays.asList(new int[]{123, 456});
System.out.println(arr1.size());//1
List arr2 = Arrays.asList(new Integer[]{123, 456});
System.out.println(arr2.size());//2
Collection
接口的实现类的对象中添加数据obj
时,要求obj所在类要重写equals()
.Iterator iterator = coll.iterator();
//hasNext():判断是否还下一个元素
while(iterator.hasNext()){
//next():①指针下移 ②将下移以后集合位置上的元素返回
System.out.println(iterator.next());
}
测试Iterator
中的remove()
next()
或在上一次调用 next
方法之后已经调用了 remove
方法,再调用remove都会报IllegalStateException
。remove()
,可以在遍历的时候,删除集合中的元素。此方法不同于集合直接调用remove()
@Test
public void test3(){
Collection coll = new ArrayList();
coll.add(123);
coll.add(456);
coll.add(new Person("Jerry",20));
coll.add(new String("Tom"));
coll.add(false);
//删除集合中"Tom"
Iterator iterator = coll.iterator();
while (iterator.hasNext()){
// iterator.remove();
Object obj = iterator.next();
if("Tom".equals(obj)){
iterator.remove();
// iterator.remove();
}
}
//遍历集合
iterator = coll.iterator();
while (iterator.hasNext()){
System.out.println(iterator.next());
}
}
@Test
public void test1(){
Collection coll = new ArrayList();
coll.add(123);
coll.add(456);
coll.add(new Person("Jerry",20));
coll.add(new String("Tom"));
coll.add(false);
//for(集合元素的类型 局部变量 : 集合对象)
for(Object obj : coll){
System.out.println(obj);
}
}
遍历数组举例
遍历数组举例:
@Test
public void test2(){
int[] arr = new int[]{1,2,3,4,5,6};
//for(数组元素的类型 局部变量 : 数组对象)
for(int i : arr){
System.out.println(i);
}
}
|----Collection接口:单列集合,用来存储一个一个的对象
|----ArrayList:作为List接口的主要实现类;线程不安全的,效率高;底层使用Object[] elementData存储
|----LinkedList:对于频繁的插入、删除操作,使用此类效率比ArrayList高;底层使用双向链表存储
|----Vector:作为List接口的古老实现类;线程安全的,效率低;底层使用Object[] elementData存储
jdk 7情况下:
ArrayList list = new ArrayList();
//底层创建了长度是10的Object[]
数组elementData
list.add(123);
//elementData[0] = new Integer(123);
list.add(11);
//如果此次的添加导致底层elementData数组容量不够,则扩容。jdk 8中ArrayList的变化:
ArrayList list = new ArrayList();
//底层Object[] elementData
初始化为{}
.并没创建长度为10的数组list.add(123);
//第一次调用add()
时,底层才创建了长度10的数组,并将数据123添加到elementData[0]
LinkedList list = new LinkedList();
内部声明了Node
类型的first
和last
属性,默认值为null
list.add(123);//
将123
封装到Node
中,创建了Node
对象。private static class Node<E> {
E item;
Node<E> next;
Node<E> prev;
Node(Node<E> prev, E element, Node<E> next) {
this.item = element;
this.next = next;
this.prev = prev;
}
}
HashSet
为例说明:equals()
判断时,不能返回true
即:相同的元素只能添加一个。对于添加成功的情况2和情况3而言:元素a 与已经存在指定索引位置上数据以链表的方式存储。
jdk 7 :元素a放到数组中,指向原来的元素。
jdk 8 :原来的元素在数组中,指向元素a
HashSet底层:数组+链表的结构。(前提:jdk7)
|----Collection接口:单列集合,用来存储一个一个的对象
|----Set接口:存储无序的、不可重复的数据 -->高中讲的“集合”
|----HashSet:作为Set接口的主要实现类;线程不安全的;可以存储null值
|----LinkedHashSet:作为HashSet的子类;遍历其内部数据时,可以按照添加的顺序遍历
在添加数据的同时,每个数据还维护了两个引用,记录此数据前一个数据和后一个数据。 对于频繁的遍历操作,LinkedHashSet效率高于HashSet.
|----TreeSet:可以照添加对象的指定属性,进行排序。
HashSet/LinkedHashSet:
TreeSet:
//方式一:自然排序
@Test
public void test1(){
TreeSet set = new TreeSet();
//失败:不能添加不同类的对象
// set.add(123);
// set.add(456);
// set.add("AA");
// set.add(new User("Tom",12));
//举例一:
// set.add(34);
// set.add(-34);
// set.add(43);
// set.add(11);
// set.add(8);
//举例二:
set.add(new User("Tom",12));
set.add(new User("Jerry",32));
set.add(new User("Jim",2));
set.add(new User("Mike",65));
set.add(new User("Jack",33));
set.add(new User("Jack",56));
Iterator iterator = set.iterator();
while(iterator.hasNext()){
System.out.println(iterator.next());
}
}
//方式二:定制排序
@Test
public void test2(){
Comparator com = new Comparator() {
//照年龄从小到大排列
@Override
public int compare(Object o1, Object o2) {
if(o1 instanceof User && o2 instanceof User){
User u1 = (User)o1;
User u2 = (User)o2;
return Integer.compare(u1.getAge(),u2.getAge());
}else{
throw new RuntimeException("输入的数据类型不匹配");
}
}
};
TreeSet set = new TreeSet(com);
set.add(new User("Tom",12));
set.add(new User("Jerry",32));
set.add(new User("Jim",2));
set.add(new User("Mike",65));
set.add(new User("Mary",33));
set.add(new User("Jack",33));
set.add(new User("Jack",56));
Iterator iterator = set.iterator();
while(iterator.hasNext()){
System.out.println(iterator.next());
}
}
HashMap的底层:
HashMap在jdk7中实现原理:
HashMap map = new HashMap();
DEFAULT_INITIAL_CAPACITY :
HashMap的默认容量,16DEFAULT_LOAD_FACTOR:
HashMap的默认加载因子:0.75threshold:
扩容的临界值,=容量*填充因子:16 * 0.75 => 12TREEIFY_THRESHOLD:
Bucket中链表长度大于该默认值,转化为红黑树:8MIN_TREEIFY_CAPACITY:
桶中的Node被树化时最小的hash表容量:64LinkedHashMap
底层使用的结构与HashMap
相同,因为LinkedHashMap
继承于HashMap
.LinkedHashMap
内部提供了Entry
,替换HashMap
中的Node
.//Properties:常用来处理配置文件。key和value都是String类型
public static void main(String[] args) {
FileInputStream fis = null;
try {
Properties pros = new Properties();
fis = new FileInputStream("jdbc.properties");
pros.load(fis);//加载流对应的文件
String name = pros.getProperty("name");
String password = pros.getProperty("password");
System.out.println("name = " + name + ", password = " + password);
} catch (IOException e) {
e.printStackTrace();
} finally {
if(fis != null){
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
reverse(List):
反转 List 中元素的顺序shuffle(List):
对 List 集合元素进行随机排序sort(List):
根据元素的自然顺序对指定 List 集合元素升序排序sort(List,Comparator):
根据指定的 Comparator 产生的顺序对 List 集合元素进行排序swap(List,int, int):
将指定 list 集合中的 i 处元素和 j 处元素进行交换Object max(Collection):
根据元素的自然顺序,返回给定集合中的最大元素Object max(Collection,Comparator):
根据 Comparator 指定的顺序,返回给定集合中的最大元素Object min(Collection)
Object min(Collection,Comparator)
int frequency(Collection,Object):
返回指定集合中指定元素的出现次数void copy(List dest,List src):
将src中的内容复制到dest中boolean replaceAll(List list,Object oldVal,Object newVal):
使用新值替换 List 对象的所旧值