JAVA---泛型

news/2024/12/2 22:32:00/

一、什么是泛型

        Java的泛型 (generics) 是在JDK5中推出的新概念,在泛型推出之前,程序员需要构建一个元素为Object的集合,该集合能够存储任意的数据类型对象,而在使用该集合的过程中,需要程序员明确知道存储每个元素的数据类型,否则会发生ClassCastException (类转换异常)

        而泛型提供了编译时类型安全监测机制,允许我们在编译时检测到非法的类型数据结构,它的本质就是参数化类型,也就是所操作的数据类型被指定为一个参数 (形参),

        以ArrayList举例子来说,通过查看ArrayList源码可以看到,ArrayList中可以存放任意的类型是因为有一个泛型<E>,当new一个ArrayList并在泛型中放任意的类型之后此时这个ArrayList就只能存泛型中存放的这个类型的对象,这就是泛型的作用

        泛型的好处就在于可以让类型的存放更安全并且可以避免强制类型的转换不会报ClassCastException


二、泛型类

1、语法定义

class 类名<泛型标识, 泛型标识, ...>{

    private 泛型标识 变量名;

    .....

}

使用语法

类名<具体数据类型> 对象名 = new 类名<具体数据类型>();

java1.7之后,后面的<>中的具体的数据类型可以省略不写

类名<具体的数据类型> 对象名 = new 类名<>();

注意事项:

泛型类,如果没有指定具体的数据类型,此时操作类型是Object

 <具体数据类型> 泛型中只能存放包装类

 泛型类在逻辑上可以看成是多个不同的类型,但实际上都是相同类型

例:

public class Test1<T> {private T key;public T getKey() {return key;}public void setKey(T key) {this.key = key;}
}

public class MainMethod {public static void main(String[] args) {Test1<String> test1 = new Test1<>();test1.setKey("abc");System.out.println("test1存的key为:" + test1.getKey());System.out.println("test1的类型为:" + test1.getClass().getSimpleName());System.out.println("test1存的key的类型为:" + test1.getKey().getClass().getSimpleName());}
}

同一泛型类,根据不同的数据类型创建的对象,本质上是同一类型

public class MainMethod {public static void main(String[] args) {Test1<String> test1 = new Test1<>();test1.setKey("abc");System.out.println("test1的类型为:" + test1.getClass());Test1<Integer> test2 = new Test1<>();test2.setKey(100);System.out.println("test2的类型为:" + test2.getClass());System.out.println(test1.getClass() == test2.getClass());}
}

多个泛型

public class Test1<T,V> {private T key;private V value;public T getKey() {return key;}public void setKey(T key) {this.key = key;}public V getValue() {return value;}public void setValue(V value) {this.value = value;}
}

public class MainMethod {public static void main(String[] args) {Test1<String,Integer> test1 = new Test1<>();test1.setKey("number");test1.setValue(100);System.out.println(test1.getKey() + ":" + test1.getValue());}
}

2、常用的泛型标识: T、E、K、V、?

T (type) 表示具体的一个java类型   常用在定义单个对象或者单个方法时

E (element) 代表元素   常在集合中使用

K V  分别代表java键值中的Key和Value   常用在类似于map的集合中

?表示不确定的 java 类型   常在上下限中使用


三、泛型类派生子类

1、语法定义

子类也是泛型类,子类和父类的泛型类型要一致

 class Children<T> extends Father<T>

子类不是泛型类,父类要明确泛型的数据类型

class Children extends Father<具体类型>

2、使用场景

 

 可以看出使用instanceof之后调用的是children的属性

 要是父类.属性调用的就是父类的

 


四、泛型接口

1、语法定义

interface 接口名<泛型标识,泛型标识, ...>{

   泛型标识 方法名();

   .....

}

2、泛型接口的使用

实现类不是泛型类,接口要明确数据类型

实现类也是泛型类,实现类和接口的泛型类型要一致

例:

public interface InMethod<T> {T getKey(T t);
}
//如果此时实现接口后泛型中不指定具体类型那么重新接口的方法和派生子类一样是Object
public class claMethod implements InMethod{@Overridepublic Object getKey(Object o) {return null;}
}

//如果此时实现接口后泛型中指定具体的类型那么重写接口方法之后返回的就是定义的类型
public class claMethod implements InMethod<Integer>{@Overridepublic Integer getKey(Integer integer) {return null;}
}

实现接口之后重写一下接口中的方法

public class ClaMethod implements InMethod<Integer>{@Overridepublic Integer getKey(Integer integer) {return integer;}
}
public class MainMethod {public static void main(String[] args) {ClaMethod claMethod = new ClaMethod();Integer num = claMethod.getKey(100);System.out.println(num.getClass().getSimpleName());}
}

类实现接口并使用了接口中的方法后因为类没有定义泛型所以使用的类型是接口的类型

//接口中的泛型是实现类中泛型的其中一个就可以
public class ClaMethod<T,K,E> implements InMethod<K>{@Overridepublic K getKey(K k) {return null;}
}


五、泛型方法

1、语法定义

修饰符 <T, E, ...> 返回值类型 方法名(形参列表) {

        方法体 ...

}

【注意】

·   public 与 返回值中间<T> 非常重要,可以理解为声明此方法为泛型方法。

·  只有声明了<T>的方法才是泛型方法,泛型类中 使用了泛型的成员方法并不是泛型方法

·  <T>表明该方法将使用泛型类型T,此时才可以在方法中使用泛型类型T

·  与泛型类的定义一样,此处T可以随便写为任意标识,如 T、E、K、V等形式的参数常用于表示     泛型

例:

public class ClaMethod<T,K,E>{public <T> T getGeneric(T t){return t;}
}
public class MainMethod {public static void main(String[] args) {ClaMethod claMethod = new ClaMethod();String str = "abc";System.out.println(claMethod.getGeneric(str).getClass().getSimpleName());}
}

//要是调用的不是void方法 可以传多个类型 return的和上边返回的类型要一致
public <T,K> K GG(K k){return k;}

2、静态的泛型方法

public class ClaMethod<T,K,E>{//静态的泛型方法采用多个泛型类型public static <T,K,E> void getGenericType(T t,K k){System.out.println(t+"\t"+t.getClass().getSimpleName());System.out.println(k+"\t"+k.getClass().getSimpleName());}
}
public class MainMethod {public static void main(String[] args) {//static使用类名.方法名ClaMethod.getGenericType("abc",100);}
}

 3、泛型方法与可变参数

public <E> void print(E... e){

  for(E date : e){

     System.out.println(date);

  }

}

public class ClaMethod{public<E> void printE(E... e){for (E data : e) {System.out.println(data);}}
}
public class MainMethod {public static void main(String[] args) {ClaMethod claMethod = new ClaMethod();claMethod.printE("a","b","c");}
}

4、泛型方法和泛型类的区别

泛型类,是在实例化类的时候指明泛型的具体类型

泛型方法,是在调用方法的时候指明泛型的具体类型

5、泛型方法总结

泛型方法能使方法独立于类而产生变化

泛型可以使用多个,要是没有void 就return其中一个泛型,要是有void那么就正常输出就好

静态的泛型方法和普通泛型方法的区别是 静态的泛型方法是在泛型前多加一个static


六、类型通配符

1、定义

类型通配符一般是使用 "?" 代替具体的类型实参,所以,类型通配符是类型实参,而不是类型形参

一般和上下限进行配合使用

2、示例

public class ListMethod {private String listKey;public ListMethod(String listKey) {this.listKey = listKey;}@Overridepublic String toString() {return "ListMethod{" +"listKey='" + listKey + '\'' +'}';}
}

public class MainMethod {public static void main(String[] args) {ListMethod listMethod1 = new ListMethod("a");ListMethod listMethod2 = new ListMethod("b");ListMethod listMethod3 = new ListMethod("c");ArrayList<ListMethod> list = new ArrayList<>();list.add(listMethod1);list.add(listMethod2);list.add(listMethod3);MainMethod.getMethod(list);}public static void getMethod(List<?> list){for (int i = 0; i < list.size(); i++) {System.out.println(list.get(i));}}
}

3、类型通配符的上限

语法

类/接口 <? extends 实参类型>

要求该泛型的类型,只能是实参类型,或实参类型的子类类型

首先我们定义一下继承关系 如图所示 

MaxCat类MiniCat类 分别继承了 Cat类 Cat类继承了Animal类 

上限代表的意思是  能填写的类的级别最高就到extends后边的那个实体类 (包括本身)

public class MainMethod {public static void main(String[] args) {ArrayList<Animal> animalList = new ArrayList<>();ArrayList<Cat> catList = new ArrayList<>();ArrayList<MaxCat> maxList = new ArrayList<>();ArrayList<MiniCat> miniCatList = new ArrayList<>();//上限 -> 只能添加继承后边的实参对象的子类 
//        showExtendsList(animalList);showExtendsList(catList);showExtendsList(maxList);showExtendsList(miniCatList);}public static void showExtendsList(ArrayList<? extends Cat> list){for (int i = 0; i < list.size(); i++) {System.out.println(list.get(i));}}
}

【重要】

类/接口 <? extends 实参类型> 这个东西叫泛型列表 在上限中泛型列表里边是不允许添加其他元素的

因为现在有这么一种情况,我们都知道java中要是创建一个类的话要从它的父类开始创建,一直到当前类,

以上图例子进行说明,那么假如现在我调用showExtendsList方法 在该方法中进行添加元素,main方法中我们可以看到,上限因为可以存的是Cat的子类,现在有这么一种情况在MaxCat和MiniCat下分别又有四个子类 BlackMaxCat   YellowMiniCat   BlackMiniCat   YellowMiniCat   如下图

现在四个类中都分别有一个各自类的方法依次为 A B C D

 那么当我添加BlackMaxCat的时候 万一泛型列表中存放的是其他的 YellowMaxCat这三个类 那么创建对象的时候只能创建父类,方法找不到就会报错,说白了我们无法确定最小的类是什么,为了安全考虑在上限的泛型列表中不允许添加子类对象,那为什么添加extends后边对象的父类也不行呢,同样是因为继承的原因,我们不确定这个父类是一个总体的父类还是某一个节点的父类,所以说同样是为了安全考虑在上限的泛型列表中不允许添加父类对象,综上所述,上限列表中是不允许添加对象的

4、类型通配符的下限

语法

类/接口<? super 实参类型>

要求该泛型的类型,只能是实参类型,或实参类型的父类类型

继承关系如图所示

下限代表的意思是  能填写的类的级别最低就到super后边的那个实体类 (包括本身)

public class MainMethod {public static void main(String[] args) {ArrayList<Animal> animalList = new ArrayList<>();ArrayList<Cat> catList = new ArrayList<>();ArrayList<MaxCat> maxList = new ArrayList<>();ArrayList<MiniCat> miniCatList = new ArrayList<>();//下限showSuperList(animalList);showSuperList(catList);
//        showSuperList(maxList);
//        showSuperList(miniCatList);}public static void showSuperList(ArrayList<? super Cat> list){
//        list.add(new Animal());list.add(new Cat());list.add(new MiniCat());list.add(new MiniCat());for (Object superList: list) {System.out.println(superList);}}}

【重要】

类/接口 <? super 实参类型> 这个东西叫泛型列表 在下限中泛型列表里边允许添加super 后边实体类的子类 (包括本身)

因为我们知道我们添加的类都是super 后边这个类的父类,我在泛型列表里边添加子类 new对象的时候父类也会被创建出来 不会受到影响,不能存父类是因为不能排除还有其他类和当前类都继承了同一个父类的情况,存父类的时候 因为下边的子类无法创建了所以又会报错造成不安全

【总结】

对于泛型列表可以把类的继承关系想象成一个树结构

上限可以存元素存的是extends 后边类的子类 但上限的泛型列表不能存元素

下限可以存元素存的是 super 后边类的父类   下限列表可以存元素存的是 super后边类的子类


七、类型擦除

        泛型是java1.5版本才引进的概念,在这之前是没有泛型的,但是,泛型代码能够很好的和之前版本的代码兼容。那是因为,泛型信息只存在于代码编译阶段,在进JVM之前,与泛型相关的信息会被擦除掉,我们称之为--类型擦除

1、类的类型擦除

无限制类型擦除

没有限制时 最后jvm运行时识别的都是Object

有限制类型擦除

有限制时,jvm运行时上限识别的是限制的类型  下限识别的是Object

2、方法的类型擦除

方法的类型擦除,jvm运行时上限识别的是限制的类型  下限识别的是Object

3、接口的类型擦除

【注意】

【桥接方法】

实现了泛型接口的方法在类型擦除之后会生成两个方法 一个是生成限制类型的方法一个是桥接方法桥接方法指的是接口中的方法进行类型擦除之后生成的Object方法要在实现类的方法中进行一个对应,换句话说,类型擦除后 接口中的方法是Object方法 实现类中的方法一个是限制的另一个还需要一个与接口的Object方法相对应的 返回值的类型是Object类型,但return的类型是限制类的类型  


八、泛型数组

1、泛型数组的创建

可以声明带泛型的数组引用,但是不能直接创建带泛型的数组对象

可以通过java.lang.reflect.Array的newInstance(Class<T> ,int) 创建T[]数组

例:

这么写是错误的 ,正确的写法如下图

或者可以是如下写法

区别在于没有把原生对象暴露出来而是采用了直接将匿名对象赋给泛型数组

【注意】new ArrayList 后边没有<> 证明这是ArrayList类型的数组而不是ArrayList集合数组

public class MainMethod {public static void main(String[] args) {//错误ArrayList<String>[] arrayList = new ArrayList<String>[5];//正确ArrayList<String>[] arrayList1 = new ArrayList[5];}
}

2、对象中创建泛型数组

public class StrClass<T> {private T[] array = new T[5];
}

这种方式是错误的因为我们不知道传的类型是什么类型,万一如上边一样传一个ArrayList<String>那么一定会报错的

正确的方式如下

使用java中Array类的newInstance方法利用反射创建一个对象放在构造器当中从而创建一个数组

public class StrClass<T> {private T[] array;public StrClass(Class<T> strClass,int length){array = (T[])Array.newInstance(strClass,length);}public void setArray(T[] array) {this.array = array;}public T[] getArray() {return array;}
}

public class MainMethod {public static void main(String[] args) {StrClass<String> strClass = new StrClass<>(String.class,10);String[] str = {"a","b","c"};strClass.setArray(str);//调用Arrays.toString方法输出setArray的值System.out.println(Arrays.toString(strClass.getArray()));}
}


九、反射常用的泛型类

Class<T>

Constructor<T>

public class MainMethod {public static void main(String[] args) {//Class<T>Class<String> stringClass  = String.class;//Constructor<T>try {Constructor<String> constructor = stringClass.getConstructor();} catch (NoSuchMethodException e) {e.printStackTrace();}}
}


http://www.ppmy.cn/news/11872.html

相关文章

python基础篇之列表(增删改查)

大家好&#xff0c;我是csdn的博主&#xff1a;lqj_本人 这是我的个人博客主页&#xff1a;lqj_本人的博客_CSDN博客-微信小程序,前端,vue领域博主lqj_本人擅长微信小程序,前端,vue,等方面的知识https://blog.csdn.net/lbcyllqj?spm1000.2115.3001.5343 哔哩哔哩欢迎关注&…

国产linux操作系统——麒麟操作系统的来龙去脉(有下载地址,亲测可用)

文章目录1、linux操作系统2、国产操作系统3、麒麟操作系统4、引用1、linux操作系统 目前市场主流的linux操作系统分类大致如此&#xff0c;国产操作系统的麒麟操作系统&#xff0c;底层比较杂&#xff0c;所以单独一类。 2、国产操作系统 排名日期截止到2022.6。 这里提一下排…

【Linux】make/Makefile的简单使用

人生的态度是&#xff0c;抱最大的希望&#xff0c;尽最大的努力&#xff0c;做最坏的打算。 – 柏拉图 《理想国》 目录一.Linux项目自动化构建工具-make/Makefile1.为什么需要使用make/Makefile2.简单理解make和Makefile3.如何编写Makefile文件3.1生成可执行程序&#xff1a…

priority_queue 接口使用(仿函数、函数指针解决优先级队列存放自定义类型元素、指针类型元素)

一、priority_queue 优先队列本质就是 堆 堆&#xff1a; 完全二叉树&#xff0c;任意结点比其孩子结点小->小根堆, 任意结点比其孩子结点大->大根堆, 头文件包含&#xff1a;#include<queue> 二、优先级队列的模板参数列表&#xff1a; template <class …

redis 5种数据结构适用场景

网上介绍太笼统了&#xff0c;呕心沥血整理出来的可理解的适用场景&#xff0c;查看下图redis-cli指令大全&#xff1a;点击查看redis指令Redis支持5种数据类型&#xff1a;string&#xff08;字符串&#xff09;hash&#xff08;哈希&#xff09;list&#xff08;列表&#xf…

宝山区企业技术中心、区级工程技术研究中心给予奖励20万元

宝山区工程技术研究中心认定一、主管部门宝山区科学技术委员会二、政策依据《宝山区加快建设科创中心主阵地促进产业高质量发展政策》&#xff08;宝府规〔2021〕1 号&#xff09;《宝山区工程技术研究中心建设与管理办法》&#xff08;宝科委〔2021〕9 号&#xff09;《2022年…

聊一聊nginx中KeepAlive的设置

文章目录问题分析为什么要有KeepAlive&#xff1f;TCP KeepAlive和HTTP的Keep-Alive是一样的吗&#xff1f;Nginx的TCP KeepAlive如何设置Apache中KeepAlive和KeepAliveTimeOut参考资料问题 之前工作中遇到一个KeepAlive的问题&#xff0c;现在把它记录下来&#xff0c;场景是…

详解“陌生的“位段

目录 一、什么是位段&#xff1f; 二、位段的内存分配 三、位段的应用 一、什么是位段&#xff1f; C 语言允许一个结构体中以位为单位来指定其成员所占内存长度&#xff0c;这种以位为单位的成员称为"位段"或"位域"&#xff08;bit field&#xff09;…