在编写JAVA程序中,我们经常会遇到需要保存一组数据对象,此时,我们可以采用对象数组来进行多个对象的保存,但对象数组存在一个最大的问题即在于长度上的限制,如果说我们现在要保存一组对象,但是我们并知道数组对象到底有多少个的时候,那么此时就遇到了困难,因此为了解决此问题,在JDK1.2中,提出了类集框架的概念,并在JDK1.5中对此框架进行了修改,加入了泛型的支持,从而保证了操作的安全性。而在整个集合中,提供了几个集合核心操作的接口,分别为:Collection、Set、List、Enumeration、Iterator、ListIterator等。

  1)单值保存的最大父接口:Collection

所谓的单值保存指的是每次操作只保存一个对象,每次增加只增加一个对象,而在Collection接口之中定义了如下几个常用的方法:

package com.njupt.study.collection;

import java.util.Iterator;

public interface Collection<E> extends Iterable<E>{

    /**
* 增加数据
* @param e
* @return
*/
boolean add(E e);
/**
* 删除指定的元素
* @param o
* @return
*/
boolean remove(Object o);
/**
* 清除数据
*/
void clear();
/**
* 判断集合是否为空
* @return
*/
boolean isEmpty();
/**
* 获取元素的个数
* @return
*/
int size();
/**
* 查找一个数据是否存在
* @param o
* @return
*/
boolean contains(Object o);
/**
* 将集合变为对象数组后返回
* @return
*/
Object[] toArray();
/**
* 将集合变为指定类型的对象数组
* @param <T>
* @param a
* @return
*/
<T> T[] toArray(T[] a);
/**
* 为Iterator接口实例化,来源于父类接口Iterable
*/
Iterator<E> iterator(); }

  Collection接口本身在开发之中并不会直接的去使用,而在开发之中往往会使用两个子接口:List、Set。

  2)允许重复的子接口:List

List接口是Collection接口的子接口,是有序的 collection(也称为序列)。此接口的用户可以对列表中每个元素的插入位置进行精确地控制。用户可以根据元素的整数索引(在列表中的位置)访问元素,并搜索列表中的元素。

  public interface List<E>extends Collection<E>

List接口对Collection接口进行了大量的扩充操作,而主要的扩充方法有如下几个:

  

public interface List<E> extends Collection<E> {

     /**
* 返回指定位置上的数据
* @param index
* @return
*/
E get(int index); /**
* 修改指定位置上的数据
* @param index
* @param element
* @return
*/
E set(int index, E element); /**
* 为ListIterator接口实例化
* @return
*/
ListIterator<E> listIterator();
}

  List本身也是一个接口,所以如果要想使用这个接口就必须有子类,实现List接口的集合主要有:ArrayList、LinkedList、Vector、Stack。

  1. ArrayList:

在List接口里面ArrayList子类的使用几率是最高的,一般List接口实例化,一般想到的为ArrayList。

 package com.njupt.study.collection;

 import java.util.ArrayList;
import java.util.List; class Student
{
private String name; private int age; public Student(){}; public Student(String n,int a)
{
this.name = n;
this.age = a;
} 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;
} } public class Demo02 { public static void main(String[] args) {
List<Student> list = new ArrayList<Student>(); list.add(new Student("zhangsan",18)); list.add(new Student("lisi",19)); list.add(new Student("wangwu",17)); System.out.println(list); System.out.println("******************"); for(int i=0;i<list.size();i++)
{
System.out.println(list.get(i));
}
}
}

输出结果为:

[com.njupt.study.collection.Student@1fc4bec, com.njupt.study.collection.Student@dc8569, com.njupt.study.collection.Student@1bab50a]
******************
com.njupt.study.collection.Student@1fc4bec
com.njupt.study.collection.Student@dc8569
com.njupt.study.collection.Student@1bab50a

为了显示更加明显的信息,因此增加重写toString()方法,

public String toString()
{
return this.name+"---->"+this.age;
}

显示结果为:

[zhangsan---->18, lisi---->19, wangwu---->17]
******************
zhangsan---->18
lisi---->19
wangwu---->17

可以看见ArrayList采用的为数组方式保存元素对象。

add 为添加元素,那么remove 可以删除元素,那么我们试试删除元素:

 package com.njupt.study.collection;

 import java.util.ArrayList;
import java.util.List; class Student
{
private String name; private int age; public Student(){}; public Student(String n,int a)
{
this.name = n;
this.age = a;
} 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;
} public String toString()
{
return this.name+"---->"+this.age;
}
} public class Demo02 { public static void main(String[] args) {
List<Student> list = new ArrayList<Student>(); list.add(new Student("zhangsan",18)); list.add(new Student("lisi",19)); list.add(new Student("wangwu",17)); System.out.println(list); System.out.println("******************"); for(int i=0;i<list.size();i++)
{
System.out.println(list.get(i));
} System.out.println("*********删除元素*************"); list.remove(new Student("wangwu",17));
for(int i=0;i<list.size();i++)
{
System.out.println(list.get(i));
} }
}

输出结果为:

[zhangsan---->18, lisi---->19, wangwu---->17]
******************
zhangsan---->18
lisi---->19
wangwu---->17
*********删除元素*************
zhangsan---->18
lisi---->19
wangwu---->17

可以看见元素并没有被删除,为什么呢?  那我们试试非自定义对象是否可以删除呢?

 package com.njupt.study.collection;

 import java.util.ArrayList;

 public class Demo01 {

     /**
* @param args
*/
public static void main(String[] args) {
java.util.List<String> list = new ArrayList<String>(); list.add("a"); list.add("b"); list.add("c"); System.out.println(list); for (int x = 0; x < list.size(); x++) {
System.out.println(list.get(x));
} list.remove("c"); System.out.println("**********************"); for (int x = 0; x < list.size(); x++) {
System.out.println(list.get(x));
}
} }

显示结果为:

[a, b, c]
a
b
c
**********************
a
b

我们发现是可以删除的,为什么我们自己定义的不能删除呢?我们看下String的源码有什么不同?

 public boolean equals(Object anObject) {
if (this == anObject) {
return true;
}
if (anObject instanceof String) {
String anotherString = (String)anObject;
int n = count;
if (n == anotherString.count) {
char v1[] = value;
char v2[] = anotherString.value;
int i = offset;
int j = anotherString.offset;
while (n-- != 0) {
if (v1[i++] != v2[j++])
return false;
}
return true;
}
}
return false;
}

  原因应该就是上面的,因为对象在删除的时候,需要判断集合中的对象和要删除的对象是否一致,然后才能删除,但我们自定义对象中,并没有重写equals方法所以,删除的时候没有成功,为此,我们增加equals方法试试如何?

 public boolean equals(Object obj)
{
if(this == obj)
{
return true;
} if(obj == null)
{
return false;
} if( ! (obj instanceof Student) )
{
return false;
} Student other = (Student) obj; if(this.name.equals(other.name) && this.age == other.age)
{
return true;
}
return false;
}

显示结果为:

[zhangsan---->18, lisi---->19, wangwu---->17]
******************
zhangsan---->18
lisi---->19
wangwu---->17
*********删除元素*************
zhangsan---->18
lisi---->19

已成功删除。

注意:

既然ArrayList类可以为List接口实例化,那么也就可以为Collection接口实例化,但是这个时候已经不可以继续使用get()方法操作了,所以此时只能够将Collection变为对象数组后返回。

package com.njupt.study.collection;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List; class Student
{
private String name; private int age; public Student(){}; public Student(String n,int a)
{
this.name = n;
this.age = a;
} 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;
} public boolean equals(Object obj)
{
if(this == obj)
{
return true;
} if(obj == null)
{
return false;
} if( ! (obj instanceof Student) )
{
return false;
} Student other = (Student) obj; if(this.name.equals(other.name) && this.age == other.age)
{
return true;
}
return false;
} /*public boolean equals(Object obj) {
if (this == obj) {
return true ;
}
if (obj == null) {
return false ;
}
if (! (obj instanceof Student)) {
return false ;
}
Student t = (Student) obj ;
if(this.name.equals(t.name ) && this.age == t.age) {
return true ;
}
return false ;
} */ public String toString()
{
return this.name+"---->"+this.age;
}
} public class Demo02 { public static void main(String[] args) {
Collection<Student> list = new ArrayList<Student>(); list.add(new Student("zhangsan",18)); list.add(new Student("lisi",19)); list.add(new Student("wangwu",17)); System.out.println(list); System.out.println("******************"); Student[] all = list.toArray(new Student[]{}); for(int i=0;i<all.length;i++)
{
System.out.println(all[i]);
} }
}

2. LinkedList

同样实现List接口的LinkedList与ArrayList不同,ArrayList是一个动态数组,而LinkedList是一个双向链表。所以它除了有ArrayList的基本操作方法外还额外提供了insert方法在LinkedList的首部或尾部。

由于实现的方式不同,LinkedList不能随机访问,它所有的操作都是要按照双重链表的需要执行。在列表中索引的操作将从开头或结尾遍历列表(从靠近指定索引的一端)。这样做的好处就是可以通过较低的代价在List中进行插入和删除操作。

与ArrayList一样,LinkedList也是非同步的。如果多个线程同时访问一个List,则必须自己实现访问同步。一种解决方法是在创建List时构造一个同步的List: 
List list = Collections.synchronizedList(new LinkedList(…));

ArrayList擅长于随机访问。同时ArrayList是非同步的。

3. Vector

Vector类是在JDK 1.0的时候所推出的最早的实现数据结构支持的类,其最早翻译为向量,但是到了JDK 1.2之后,为了使其可以继续使用,所以让这个类多实现了一个List接口,这样一来,就造成了Vector子类的操作方法比ArrayList更多,但是一般这些多的方法很少考虑。

与ArrayList相似,但是Vector是同步的。所以说Vector是线程安全的动态数组。它的操作与ArrayList几乎一样。

4.Stack

Stack继承自Vector,实现一个后进先出的堆栈。Stack提供5个额外的方法使得Vector得以被当作堆栈使用。基本的push和pop 方法,还有peek方法得到栈顶的元素,empty方法测试堆栈是否为空,search方法检测一个元素在堆栈中的位置。Stack刚创建后是空栈。

ArrayList和Vector的区别:

ArrayList和Vector都属于List接口的常用子类,这两者在操作形式以及概念上的区别如下:

No.

区别点

ArrayList

Vector

1

推出时间

JDK 1.2时推出,属于新的类

JDK 1.0时推出,属于旧的类

2

性能

使用异步处理方式,性能较高

采用同步处理操作,性能相对较低

3

安全性

非线程安全

线程安全

4

输出

因为Java主要从事于网络的开发,所以使用异步的处理操作形式要比使用同步(Synchronized)更多。

  3)不允许重复的子接口:Set

      Set接口与List接口最大的不同在于里面的数据不允许有重复,那么首先观察一下Set接口的继承结构:

public interface Set<E>
extends Collection<E>

Set是一种不包括重复元素的Collection,与List一样,它同样运行null的存在但是仅有一个。由于Set接口的特殊性,所有传入Set集合中的元素都必须不同,同时要注意任何可变对象,如果在对集合中元素进行操作时,导致e1.equals(e2)==true,则必定会产生某些问题。实现了Set接口的集合有:EnumSet、HashSet、TreeSet。

1.EnumSet

是枚举的专用Set。所有的元素都是枚举类型。

2.HashSet

哈希(Hash)是一种数据的排列算法,这种算法的典型操作就是加塞算法,那块有地就保存,所以只要带有hash都是无序的。HashSet堪称查询速度最快的集合,因为其内部是以HashCode来实现的。它内部元素的顺序是由哈希码来决定的,所以它不保证set 的迭代顺序;特别是它不保证该顺序恒久不变。

 package com.njupt.study.collection;

 import java.util.HashSet;
import java.util.Set; public class Demo03 { /**
* @param args
*/
public static void main(String[] args) {
Set<String> all = new HashSet<String>();
all.add("Hello");
all.add("World");
all.add("Hello"); // 重复数据
System.out.println(all);
} }

输出结果为:

[World, Hello]

通过本程序可以发现,里面所保存的顺序改变,而且如果有重复的数据也不能够保存。

3.TreeSet

在TreeSet子类里面所有保存的数据是没有重复的,而且可以为用户自动的进行排序。基于TreeMap,生成一个总是处于排序状态的set,内部以TreeMap来实现。它是使用元素的自然顺序对元素进行排序,或者根据创建Set 时提供的 Comparator 进行排序,具体取决于使用的构造方法。

关于排序的说明:既然在TreeSet中的所有数据都可以排序,而且里面设置的数据也都是对象,那么下面就使用自定义类完成。

但是这个时候必须注意到一点:对于现在的TreeSet子类而言,由于其要对一组对象进行排序,那么这个对象所在的类就一定要实现Comparable接口,用于指定排序规则;

 package com.njupt.study.collection;

 import java.util.Set;
import java.util.TreeSet; class Student implements Comparable<Student>
{
private String name; private int age; public Student(){}; public Student(String n,int a)
{
this.name = n;
this.age = a;
} 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;
} public boolean equals(Object obj)
{
if(this == obj)
{
return true;
} if(obj == null)
{
return false;
} if( ! (obj instanceof Student) )
{
return false;
} Student other = (Student) obj; if(this.name.equals(other.name) && this.age == other.age)
{
return true;
}
return false;
} public String toString()
{
return this.name+"---->"+this.age;
} @Override
public int compareTo(Student o) {
if (this.age > o.age) {
return 1;
} else if (this.age < o.age) {
return -1;
} else {
return this.name.compareTo(o.name);
}
}
} public class Demo04 { /**
* @param args
*/
public static void main(String[] args) {
Set<Student> all = new TreeSet<Student>();
all.add(new Student("张三",20)) ;
all.add(new Student("李四",19)) ;
all.add(new Student("王五",22)) ; // 年龄一样
all.add(new Student("赵六",22)) ; // 年龄一样
all.add(new Student("孙七",25)) ;
all.add(new Student("孙七",25)) ; // 插入了重复的数据
all.remove(new Student("李四",19)) ; // 删除一个数据
System.out.println(all);
} }

显示结果为:[张三---->20, 王五---->22, 赵六---->22, 孙七---->25]

需要注意:

实现了对自定义类对象的排序,并且可以判断重复元素,但是TreeSet类只是利用了Comparable完成了重复元素的判断,可是这种判断并不是真正意义上的重复元素判断。

如果说现在要想判断一个对象是否重复,严格来讲,这个操作是由Object类所提供的,在任何一个子类里面需要覆写Object类中的以下两个方法;

· 对象比较:public boolean equals(Object obj);

· 对象编码:public int hashCode();

hashCode()方法是用于进行对象编码计算的操作方法,如果要想进行对象的编码,那么肯定需要一些数学上的支持,这里就不详细讲解了。

JAVA集合一之集合简介(Collection,List,Set)的更多相关文章

  1. Java中的集合(六)继承Collection的Set接口

    Java中的集合(六)继承Collection的Set接口 一.Set接口的简介 Set接口和List接口都是继承自Collection接口,它与Collection接口中功能基本一致,并没有对Col ...

  2. Java中的集合(五)继承Collection的List接口

    Java中的集合(五)继承Collection的List接口 一.List接口简介 List是有序的Collection的,此接口能够精确的控制每个元素插入的位置.用户能够根据索引(元素在List接口 ...

  3. Java集合【6.1】-- Collection接口源码详解

    目录 一.Collection接口简介 二.Collection源码分析 三.Collection的子类以及子类的实现 3.1 List extend Collection 3.2 Set exten ...

  4. Java基础知识强化之集合框架笔记06:Collection集合存储自定义对象并遍历的案例

    1.练习:用集合存储5个学生对象,并把学生对象进行遍历. 分析: (1)创建学生类(2)创建集合对象(3)创建学生对象(4)把学生添加到集合(5)把集合转成数组(6)遍历数组 2. 代码示例: Stu ...

  5. Java集合总结系列2:Collection接口

    Collection 接口是 Java 集合类的一个根接口,Java 在 Collection 接口中定义了许多通用的数据操作类方法以及判断类方法. 通过查看 API 文档或源码的方式,我们可以了解到 ...

  6. Java集合框架(一)—— Collection、Iterator和Foreach的用法

    1.Java集合概述 在编程中,常常需要集中存放多个数据.当然我们可以使用数组来保存多个对象.但数组长度不可变化,一旦在初始化时指定了数组长度,则这个数组长度是不可变的,如果需要保存个数变化的数据,数 ...

  7. JAVA之旅(十八)——基本数据类型的对象包装类,集合框架,数据结构,Collection,ArrayList,迭代器Iterator,List的使用

    JAVA之旅(十八)--基本数据类型的对象包装类,集合框架,数据结构,Collection,ArrayList,迭代器Iterator,List的使用 JAVA把完事万物都定义为对象,而我们想使用数据 ...

  8. Java学习关于集合框架的基础接口--Collection接口

     集合框架(Collection  Framework)是Java最强大的子系统之一,位于java.util 包中.集合框架是一个复杂的接口与和类层次,提供了管理对象组的最新技术.Java集合框架标准 ...

  9. Java学习:单列集合Collection

    集合 学习集合的目标: 会使用集合存储数据 会遍历集合,把数据取出来 掌握每种集合的特性 集合和数组的区别 数组的长度是固定的.集合的长度是可变的. 数组中存储的是同一类型的元素,可以存储基本数据类型 ...

  10. Java中的集合(上):概述、Collection集合、List集合及其子类

    一.集合的体系结构 二.Collection集合 1.基本使用 如下代码 import java.util.ArrayList; import java.util.Collection; public ...

随机推荐

  1. 刷新UITableView

    [from]http://www.superqq.com/blog/2015/08/18/ios-development-refresh-uitableview/ UITableView对于iOS开发 ...

  2. 安卓 ArrayList,LinkedList,HashSet,Vector,TreeSet的区别和使用

    java的集合就那么几种 总体为:List,Set,Map (都是接口由其子类去实现具体的方法) ArrayList,LinkedList,Vector都属于List List:元素是有顺序的,元素可 ...

  3. IOS设计模式--代理 (委托)

    原文 http://blog.csdn.net/lovefqing/article/details/8270111 委托(delegate)也叫代理是iOS开发中常用的设计模式.我们借助于protoc ...

  4. JavaScript定时机制、以及浏览器渲染机制 浅谈

    昨晚,朋友拿了一道题问我: a.onclick = function(){ setTimeout(function() { //do something ... },0); }; JavaScript ...

  5. Android应用性能优化方案

    1.避免创建不必要的对象 2.如果方法用不到成员变量,可以把方法声明为静态(static),这样性能会提高百分之十五到百分之二十 3.避免使用get/set存取字段,可以把字段声明为public直接访 ...

  6. js原生之设计模式开篇介绍

    本文主要讲述一下,什么是设计模式(Design pattern),作为敲键盘的我们要如何学习设计模式.设计模式真的是一把万能钥匙么?     各个代码的设计模式几乎每个人都知晓,就算不会那也一定在一些 ...

  7. Eclipse 输入出错时自动查找类

    经常会只记得类的前半部分名称,这时可以双击这个没写完的类名,然后会弹出选择框:

  8. JTree实例

    JTree实例 private void createTreeByXdDdt() { DefaultComboBoxModel boxModel = (DefaultComboBoxModel) cm ...

  9. BNU Online Judge-34973-Liserious战队

    题目链接 http://www.bnuoj.com/bnuoj/problem_show.php?pid=34973 题目不难,很容易,不过不仔细看题可能你一直做不出,注意<<一共分为1~ ...

  10. MyBatis 一对一关联查询

    xml文件: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC & ...