----------------------android培训、java培训、期待与您交流! ----------------------
泛型中的?通配符
如果定义一个方法,该方法用于打印出任意参数化类型的集合中的所有数据,如果这样写
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
publicclass GernericTest {
publicstaticvoid main(String[] args) throws Exception{
List<Integer> listInteger =new ArrayList<Integer>();
List<String> listString =new ArrayList<String>();
printCollection(listInteger);
printCollection(listString);
}
publicstaticvoid printCollection(Collection<Object> collection){
for(Object obj:collection){
System.out.println(obj);
}
}
}
语句printCollection(listInteger);报错
The method printCollection(Collection<Object>) in the type GernericTest is not applicable for the arguments (List<Integer>)
这是因为泛型的参数是不考虑继承关系就直接报错。
这就得用?通配符
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
publicclass GernericTest {
publicstaticvoid main(String[] args) throws Exception{
List<Integer> listInteger =new ArrayList<Integer>();
List<String> listString =new ArrayList<String>();
printCollection(listInteger);
printCollection(listString);
}
publicstaticvoid printCollection(Collection<?> collection){
for(Object obj:collection){
System.out.println(obj);
}
}
}
在方法public static void printCollection(Collection<?> collection){}中不能出现与参数类型有关的方法比如collection.add();因为程序调用这个方法的时候传入的参数不知道是什么类型的,但是可以调用与参数类型无关的方法比如collection.size();
总结:使用?通配符可以引用其他各种参数化的类型,?通配符定义的变量的主要用作引用,可以调用与参数化无关的方法,不能调用与参数化有关的方法。
泛型中的?通配符的扩展
1:界定通配符的上边界
Vector<? extends 类型1> x = new Vector<类型2>();
类型1指定一个数据类型,那么类型2就只能是类型1或者是类型1的子类
Vector<? extends Number> x = new Vector<Integer>();//这是正确的
Vector<? extends Number> x = new Vector<String>();//这是错误的
2:界定通配符的下边界
Vector<? super 类型1> x = new Vector<类型2>();
类型1指定一个数据类型,那么类型2就只能是类型1或者是类型1的父类
Vector<? super Integer> x = new Vector<Number>();//这是正确的
Vector<? super Integer> x = new Vector<Byte>();//这是错误的
提示:限定通配符总是包括自己
泛型集合的应用举例
在用HashMap存储数据的时候由于HashMap没有实现Iterable接口而不能迭代,要是对HashMap进行迭代,就得
得到一个Set集合,这个Set的数据元素就是Entry,每个Entry就是一个key—value对。
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
publicclass GernericTest {
publicstaticvoid main(String[] args) throws Exception{
HashMap<String,Integer> hashMap =new HashMap<String,Integer>();
hashMap.put("ding", 0);
hashMap.put("peng", 1);
hashMap.put("wei", 2);
Set<Map.Entry<String,Integer>> sets = hashMap.entrySet();
for(Entry<String, Integer> set : sets ){
System.out.println(set.getKey()+";"+set.getValue());
}
}
}
自定义泛型方法和应用之数组元素位置交换
//这种方法要在返回值的前面加上<T>标记
//T是一种数据类型并且只能是引用型的数据类型
//i是代表的第一个要换位置的T[]元素的位置
//j是代表的第二个要换位置的T[]元素的位置
public static <T> void swap(T[] t,int i,int j){
T temp = t[i];
t[i] = t[j];
t[j] = temp;
}
----------------------android培训、java培训、期待与您交流! ----------------------