集合容器类在设计阶段/声明阶段不能确定这个容器到底实际存的是什么类型的对象,所以在jdk1.5之前只能把元素类型设计为Object,jdk1.5之后使用泛型来解决。把元素的类型设计成一个参数,这个类型参数叫做泛型。Collection,List,ArrayList,这个就是类型参数,即泛型
所谓泛型,就是允许在定义类、接口时通过一个标识表示类中某个属性的类型或者是某个方法的返回值及参数类型。这个类型参数将在使用时(例如,继承或实现这个接口,用这个类型声明变量、创建对象时)确定(即传入实 际的类型参数,也称为类型实参)
总结:
//在集合中使用泛型之前的情况:
@Test
public void test1(){
ArrayList list = new ArrayList();
//需求:存放学生的成绩
list.add(78);
list.add(76);
list.add(89);
list.add(88);
//问题一:类型不安全
// list.add("Tom");
for(Object score : list){
//问题二:强转时,可能出现ClassCastException
int stuScore = (Integer) score;
System.out.println(stuScore);
}
}
//在集合中使用泛型的情况:以ArrayList为例
@Test
public void test2(){
ArrayList<Integer> list = new ArrayList<Integer>();
list.add(78);
list.add(87);
list.add(99);
list.add(65);
//编译时,就会进行类型检查,保证数据的安全
// list.add("Tom");
//方式一:
// for(Integer score : list){
// //避免了强转操作
// int stuScore = score;
//
// System.out.println(stuScore);
//
// }
//方式二:
Iterator<Integer> iterator = list.iterator();
while(iterator.hasNext()){
int stuScore = iterator.next();
System.out.println(stuScore);
}
}
//在集合中使用泛型的情况:以HashMap为例
@Test
public void test3(){
// Map map = new HashMap();
//jdk7新特性:类型推断
Map<String,Integer> map = new HashMap<>();
map.put("Tom",87);
map.put("Jerry",87);
map.put("Jack",67);
// map.put(123,"ABC");
//泛型的嵌套
Set<Map.Entry<String,Integer>> entry = map.entrySet();
Iterator<Map.Entry<String, Integer>> iterator = entry.iterator();
while(iterator.hasNext()){
Map.Entry<String, Integer> e = iterator.next();
String key = e.getKey();
Integer value = e.getValue();
System.out.println(key + "----" + value);
}
}
泛型类、泛型接口、泛型方法
在方法中出现了泛型的结构,泛型参数与类的泛型参数没有任何关系(泛型方法所属的类是不是泛型类都没有关系)
public class Order<T> {
public <E> List<E> copyFromArrayToList(E[] arr){
ArrayList<E> list = new ArrayList<>();
for(E e : arr){
list.add(e);
}
return list;
}
}
public class GenericTest1 {
//测试泛型方法
@Test
public void test4(){
Order<String> order = new Order<>();
Integer[] arr =new Integer[]{1,2,3,4};
//泛型方法在调用时,指明泛型参数的类型
List<Integer> list = order.copyFromArrayToList(arr);
System.out.println(list);
}
}
泛型方法,可以声明为静态的。原因:泛型参数实在调用方法时确定的,并非在实例化类时确定
public class Order<T> {
public static <E> List<E> copyFromArrayToList(E[] arr){
ArrayList<E> list = new ArrayList<>();
for(E e : arr){
list.add(e);
}
return list;
}
}
虽然类A是类B的父类,但是G< A >和G< B >二者不具备子父类关系,二者是并列关系
补充:类A是类B的父类,A< G >是B< G >的父类
@Test
public void test5(){
List<Object> list = null;
List<String> lsit4 =null;
//编译不通过
list = list4;
AbstractList<String> list1 = null;
List<String> list2 = null;
ArrayList<String> list3 = null;
list1 =list3;
list2 =list3;
}
通配符就是问号:?
类A是类B的父类,但是 G< A > 和 G< B > 二者没有关系,二者共同的父类是:G< ? >
写入
:对于List>类型的对象不能向起内部添加数据,只能添加null
读取
:对于List>类型的对象可以读取数据,读取的数据类型为Object
@Test
public void test6(){
List<Object> list1 = null;
List<String> list2 = null;
//List>就是List
List<?> list = null;
list = list1;
list = list2;
print(list1);
print(list2);
List<String> list3 = new ArrayList<>();
list3.add("AA");
list3.add("BB");
list3.add("CC");
//list.add("DD");//编译不通过
list.add(null);//通过
Object o = list.get(0);//编译通过,可以获取
System.out.println(o);
}
public void print(List<?> list){
Iterator<?> iterator = list.iterator();
while(iterator.hasNext()){
Object obj = iterator.next();
System.out.println(obj);
}
}
@Test
public void test(){
//Student继承于Person,Person继承于Object
List<? extends Person> list1 =null;
List<? super Person> list2 =null;
List<Student> list3 = null;
List<Person> list4 = null;
List<Object> list5 = null;
list1 = list3;
list1 = list4;
// list1 = list5;//编译不通过
// list2 = list3;//编译不通过
list2 = list4;
list2 = list5;
//读取数据:
list1 = list3;
Person person = list1.get(0);
// Student student = lsit1.get(0);//编译不通过
list2 = list4;
Object object = list2.get(0);
// Person person = list2.get(0);//编译不通过
//写入数据:
// list1.add(new Student());//编译不通过
list2.add(new Person());
list2.add(new Student());//因为Student继承与Person,所以可以写入成功
// list2.add(new Object());//编译不通过
}
上限extends:使用时指定的类型必须是继承某个类,或者实现某个接口,即<=
G extends A>可以作为G< A >和G< B >的父类,其中B是A的子
类
下限super:使用时指定的类型不能小于操作的类,即>=
G extends A>可以作为G< A >和G< B >的父类,其中B是A的父
类
在对数据库操作时的应用。
public class Student{}、public class Teacher{}、public class Course{}…等类,存着与数据库中的字段相同的属性
public class Dao是一个对数据库操作(增删改查)的基类
public calss StudentDao extends Dao{}此类就只对Student表进行操作
public calss TeacherDao extends Dao{}此类就只对Teacher表进行操作
public calss CourseDao extends Dao{}此类就只对Course表进行操作