【JAVA学习笔记】58 - 泛型

项目代码

https://github.com/yinhai1114/Java_Learning_Code/tree/main/IDEA_Chapter15/src/com/yinhai/generic_

https://github.com/yinhai1114/Java_Learning_Code/tree/main/IDEA_Chapter15/src/com/yinhai/customgeneric_

一、泛型的入门和好处

        1)请编写程序,在ArrayList 中,添加3个Dog对象

        2) Dog对象含有name和age,并输出name和age (要求使用getXxx())

使用传统方法解决,引入泛型

public class Generic01 {public static void main(String[] args) {ArrayList arrayList = new ArrayList();arrayList.add(new Dog("xiaoming",10));arrayList.add(new Dog("xiaohua",5));arrayList.add(new Dog("xiaownag",20));//假如我们的使用过程,不小心加入了一只猫arrayList.add(new Cat("hello" , 15));for (Object o : arrayList) {Dog dog = (Dog)o;System.out.println(dog.getName() + " " +dog.getAge());}}
}
//为了简洁没有加入Dog和Cat类

使用传统方法的问题分析

1)不能对加入到集合ArrayList中的数据类型进行约束(不安全)

2)遍历的时候,需要进行类型转换,如果集合中的数据最较大,对效率有影响

泛型的快速入门

public class Generic02 {public static void main(String[] args) {//使用泛型来完成该代码,//1.当我们这样ArrayList<Dog>表示春芳到集合中的元素是Dog类型//2.如果编译器发现添加的类型,不满足要求就会报错ArrayList<Dog1> arrayList = new ArrayList<Dog1>();arrayList.add(new Dog1("xiaoming",10));arrayList.add(new Dog1("xiaohua",5));arrayList.add(new Dog1("xiaownag",20));//假如我们的使用过程,不小心加入了一只猫// arrayList.add(new Cat1("hello" , 15));//3.在遍历的时候可以直接取出Dog类型for (Dog1 dog1 : arrayList) {System.out.println(dog1.getName() + " " +dog1.getAge());}}
}

泛型的好处

1) 编译时,检查添加元素的类型,提高了安全性

2) 减少了类型转换的次数,提高效率

不使用泛型

        Dog -加入-> Object ->取出-> Dog //放入到ArrayList会先转成Object,在取出时还需要转换成Dog

使用泛型

        Dog-> Dog-> Dog //放入时,和取出时,不需要类型转换,提高效率

3) 不再提示编译警告
 

二、泛型的介绍

inta=10;

泛型=> E = Integer、String、Dog(表示某种数据类型,表示数据类型的数据类型)

1) 泛型又称参数化类型,是Jdk5.0 出现的新特性,解决数据类型的安全性问题

2) 在类声明或实例化时只要指定好需要的具体的类型即可。

3) Java泛型可以保证如果程序在编译时没有发出警告,运行时就不会产生ClassCastException异常。 同时,代码更加简洁、健壮

4) 泛型的作用是:可以在类声明时通过一个标识表示类中某个属性的类型,或者是某个方法的返回值的类型,或者是参数类型。

public class Generic03 {public static void main(String[] args) {Person<String> stringPerson = new Person<String>("Hello");//E表示s的数据类型,该数据类型在定义Person对象的时候指定,即在编译期间,就确定E是什么类型/*class Person{//创建Person对象的时候指定String name;//String表示s的数据类型public Person(String name) {//String可以是参数类型this.name = name;}public String f(){//返回类型使用Stringreturn name;}}*/Person<Integer> integerPerson = new Person<>(1500);//E表示s的数据类型,该数据类型在定义Person对象的时候指定,即在编译期间,就确定E是什么类型/*class Person{//创建Person对象的时候指定Integer name;//Integer表示s的数据类型public Person(Integer name) {//Integer可以是参数类型this.name = name;}public Integer f(){//返回类型使用Integerreturn name;}}*/}
}
class Person<E>{//创建Person对象的时候指定E name;//E表示s的数据类型,该数据类型在定义Person对象的时候指定,即在编译期间,就确定E是什么类型public Person(E name) {//E可以是参数类型this.name = name;}public E f(){//返回类型使用Ereturn name;}
}

三、泛型的语法

泛型的声明:

interface接口<T> {}和class类<K,V>{}

//比如: List , ArrayList

说明:

        1) 其中T,K,V不代表值,而是表示类型。

        2) 任意字母都可以。常用T表示,是Type的缩写

泛型的实例化:

要在类名后面指定类型参数的值(类型)。如:

        1) List<String> strList = new ArrayList <String> 0; [举例说明]

        2) Iterator<Customer> iterator = customers.iterator();

泛型语法使用

                

注意,在我们使用的时候如果填入泛型的类型,在调用迭代器时候可以明确指定,直接转型成我们的泛型类型即可。构造器中使用了K V 的关键字的泛型

public class GenericExercise01 {public static void main(String[] args) {Student student1 = new Student("小王");Student student2 = new Student("小马");Student student3 = new Student("小黄");HashSet<Student> hashSet = new HashSet<Student>();hashSet.add(student1);hashSet.add(student2);hashSet.add(student3);HashMap<String, Student> hashMap = new HashMap<String, Student>();hashMap.put(student1.getName(),student1);hashMap.put(student2.getName(),student2);hashMap.put(student3.getName(),student3);System.out.println("=========I遍历获取hashSet=======");for (Student student :hashSet) {System.out.println(student.getName());}Iterator iterator = hashSet.iterator();System.out.println("==========迭代器获取hashSet======");while (iterator.hasNext()) {Student next = (Student)iterator.next();System.out.println(next.getName());}System.out.println("=========I遍历获取hashMap内的entry=======");Set<Map.Entry<String, Student>> entries = hashMap.entrySet();for (Map.Entry entry : entries) {System.out.println(entry.getKey() + " " + entry.getValue());}System.out.println("=========获取key值========");Set<String> strings = hashMap.keySet();for (String key : strings) {System.out.println(key + " " + hashMap.get(key));}System.out.println("========迭代器取出entry========");Set<Map.Entry<String, Student>> entries1 = hashMap.entrySet();Iterator<Map.Entry<String, Student>> iterator1 = entries1.iterator();while (iterator1.hasNext()) {Map.Entry next =  iterator1.next();System.out.println(next.getKey() + " " +next.getValue());}}
}
class Student{private String name;public Student(String name) {this.name = name;}public String getName() {return name;}
}

四、泛型的注意事项

1. interface List<T>{},public class HashSet<E>{}..等等

说明: T, E只能是引用类型,不能是基本数据类型

看看下面语句是否正确?:

List<Integer> list = new ArrayList <Integer> 0;//ok

List<int> list2 = new ArrayList<int> 0);//报错

2.在给泛型指定具体类型后,可以传入该类型或者其子类类型

3.泛型使用形式

        List<Integer> list1 = new ArrayList < Integer> ();

        List<Integer> list2 = new ArrayList< > (); 

4.如果我们这样写List list3 = new ArrayList();默认给它的泛型是[<E> E就是Object ]
即:
 

public class GenericDetail {public static void main(String[] args) {//1.给泛型指向数据类型是,要求是引用类型,不能是基本数据类型List<Integer> list = new ArrayList<Integer>(); //OK//List<int> list2 = new ArrayList<int>();//错误//2. 说明//因为 E 指定了 A 类型, 构造器传入了 new A()//在给泛型指定具体类型后,可以传入该类型或者其子类类型Pig<A> aPig = new Pig<A>(new A());aPig.f();Pig<A> aPig2 = new Pig<A>(new B());//A类型的子类型也可以接受aPig2.f();//3. 泛型的使用形式ArrayList<Integer> list1 = new ArrayList<Integer>();List<Integer> list2 = new ArrayList<Integer>();//在实际开发中,我们往往简写//编译器会进行类型推断, 会判断后面的<>是前面<>内的类型,会自动填入ArrayList<Integer> list3 = new ArrayList<>();List<Integer> list4 = new ArrayList<>();ArrayList<Pig> pigs = new ArrayList<>();//4. 如果是这样写 泛型默认是 ObjectArrayList arrayList = new ArrayList();//等价 ArrayList<Object> arrayList = new ArrayList<Object>();/*public boolean add(Object e) {ensureCapacityInternal(size + 1);  // Increments modCount!!elementData[size++] = e;return true;}*/Tiger tiger = new Tiger();/*class Tiger {//类Object e;public Tiger() {}public Tiger(Object e) {this.e = e;}}*/}
}
class Tiger<E> {//类E e;public Tiger() {}public Tiger(E e) {this.e = e;}
}class A {}
class B extends A {}class Pig<E> {//E e;public Pig(E e) {this.e = e;}public void f(){System.out.println(e.getClass());}
}

五、泛型的课堂练习(经典使用案例)

定义Employee类

1)该类包含: private成员变量name,sal,birthday, 其中birthday为MyDate类的对象;

2)为每一个属性定义getter, setter方法;

3)重写toString方法输出name, sal, birthday

4)MyDate类包含: private成员变量month,day,year;并为每一个属性定义gettesetter方法;

5)创建该类的3个对象,并把这些对象放入ArrayList集合中(ArrayList 需使用泛型来定义),对集合中的元素进行排序,并遍历输出:排序方式:调用ArrayList 的sort方法,传入Comparator对象[使用泛型],先按name排序,如果name相同,则按生日日期的先后排序。如果不太懂多看看ArrayList的排序源码分析

六、自定义泛型类

1.基本语法
        class类名<T,R.. >{
                成员
        }

2.注意细节

1)普通成员可以使用泛型(属性、方法)

2)使用泛型的数组,不能初始化

3)静态方法中不能使用类的泛型

4)泛型类的类型,是在创建对象时确定的(因为创建对象时,需要指定确定类型)

5)如果在创建对象时,没有指定类型,默认为Object

练习

public class CustomGeneric_ {public static void main(String[] args) {//T=Double, R=String, M=IntegerTiger<Double,String,Integer> g = new Tiger<>("john");//<T = double,R = string,M = integer>g.setT(10.9); //OK//g.setT("yy"); //错误,类型不对System.out.println(g);Tiger g2 = new Tiger("john~~");//OK T=Object R=Object M=Objectg2.setT("yy"); //OK ,因为 T=Object "yy"=String 是Object子类System.out.println("g2=" + g2);}
}//1. Tiger 后面泛型,所以我们把 Tiger 就称为自定义泛型类
//2, T, R, M 泛型的标识符, 一般是单个大写字母
//3. 泛型标识符可以有多个.
//4. 普通成员可以使用泛型 (属性、方法)
class Tiger<T, R, M> {String name;R r; //属性使用到泛型M m;T t;//5. 使用泛型的数组,不能初始化//因为数组在new 不能确定T的类型,就无法在内存开空间T[] ts;public Tiger(String name) {this.name = name;}public Tiger(R r, M m, T t) {//构造器使用泛型this.r = r;this.m = m;this.t = t;}public Tiger(String name, R r, M m, T t) {//构造器使用泛型this.name = name;this.r = r;this.m = m;this.t = t;}//6. 静态方法中不能使用类的泛型//因为静态是和类相关的,在类加载时,对象还没有创建//所以,如果静态方法和静态属性使用了泛型,JVM就无法完成初始化// static R r2;// public static void m1(M m) {//// }//方法使用泛型public String getName() {return name;}public void setName(String name) {this.name = name;}public R getR() {return r;}public void setR(R r) {//方法使用到泛型this.r = r;}public M getM() {//返回类型可以使用泛型.return m;}public void setM(M m) {this.m = m;}public T getT() {return t;}public void setT(T t) {this.t = t;}@Overridepublic String toString() {return "Tiger{" +"name='" + name + '\'' +", r=" + r +", m=" + m +", t=" + t +", ts=" + Arrays.toString(ts) +'}';}
}

 

七、自定义泛型接口 

1.基本语法

        interface接口名<T,R ....> {

        }

2.注意细节

1)接口中,静态成员也不能使用泛型(这个和泛型类规定样)

2)泛型接口的类型,在继承接口或者实现接口时确定

3)没有指定类型,默认为Object
 

八、自定义泛型方法

1.基本语法

        修饰符<T,R >  返回类型  方法名(参数列表)  {

2.注意细节

        1)泛型方法,可以定义在普通类中,也可以定义在泛型类中

        2)当泛型方法被调用时,类型会确定

        3)public void eat(E e) {},修饰符后没有<T,R..> eat方法不是泛型方法,而是使用了泛型

3.练习

eat(U u)错误,Dog类内都正确,两个调用都是泛型方法,传入参数才确定泛型指向的类型

public class CustomMethodGenericExercise {public static void main(String[] args) {//T->String, R->Integer, M->DoubleApple<String, Integer, Double> apple = new Apple<>();apple.fly(10);//10 会被自动装箱 Integer10, 输出Integerapple.fly(new Dog());//Dog}
}class Apple<T, R, M> {//自定义泛型类public <E> void fly(E e) {  //泛型方法System.out.println(e.getClass().getSimpleName());}//public void eat(U u) {}//错误,因为U没有声明public void run(M m) {} //ok
}class Dog {
}

九、泛型的基础和通配符 

1)泛型不具备继承性

        List <Object> list = new ArrayList <String>(); //对吗?

2) <?> :支持任意泛型类型

3) <? extends A>:支持A类以及A类的子类,规定了泛型的上限

4) <? super A>:支持A类以及A类的父类,不限于直接父类,规定了泛型的下限

public class GenericExtends {public static void main(String[] args) {Object o = new String("xx");//泛型没有继承性//List<Object> list = new ArrayList<String>();//举例说明下面三个方法的使用List<Object> list1 = new ArrayList<>();List<String> list2 = new ArrayList<>();List<AAA> list3 = new ArrayList<>();List<BBB> list4 = new ArrayList<>();List<CCC> list5 = new ArrayList<>();//如果是 List<?> c ,可以接受任意的泛型类型printCollection1(list1);printCollection1(list2);printCollection1(list3);printCollection1(list4);printCollection1(list5);//List<? extends AA> c: 表示 上限,可以接受 AAA或者AAA子类
//        printCollection2(list1);//×
//        printCollection2(list2);//×printCollection2(list3);//√printCollection2(list4);//√printCollection2(list5);//√//List<? super AAA> c: 支持AA类以及AA类的父类,不限于直接父类printCollection3(list1);//√//printCollection3(list2);//×printCollection3(list3);//√//printCollection3(list4);//×//printCollection3(list5);//×//冒泡排序//插入排序//....}//说明: List<?> 表示 任意的泛型类型都可以接受public static void printCollection1(List<?> c) {for (Object object : c) { // 通配符,取出时,就是ObjectSystem.out.println(object);}}// ? extends AAA 表示 上限,可以接受 AAA或者AAA子类public static void printCollection2(List<? extends AAA> c) {for (Object object : c) {System.out.println(object);}}// ? super 子类类名AA:支持AAA类以及AAA类的父类,不限于直接父类,//规定了泛型的下限public static void printCollection3(List<? super AAA> c) {for (Object object : c) {System.out.println(object);}}
}class AAA{}class BBB extends AAA {
}class CCC extends BBB {
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/127938.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

人工智能基础_机器学习016_BGD批量梯度下降求解多元一次方程_使用SGD随机梯度下降计算一元一次方程---人工智能工作笔记0056

然后上面我们用BGD计算了一元一次方程,那么现在我们使用BGD来进行计算多元一次方程 对多元一次方程进行批量梯度下降. import numpy as np X = np.random.rand(100,8) 首先因为是8元一次方程,我们要生成100行8列的X的数据对应x1到x8 w = np.random.randint(1,10,size = (8…

B端企业形象设计的正确姿势,你学会了吗?

如今&#xff0c;企业形象设计在B端市场中变得越来越重要。它是企业与客户之间建立联系的桥梁&#xff0c;也是吸引目标客户的重要方式。为了帮助您打造一个独特而专业的企业形象设计&#xff0c;我将为您提供十个步骤。 步骤1&#xff1a;了解企业定位和目标 在设计B端企业形…

完美解决:Nginx安装后,/etc/nginx/conf.d下面没有default.conf文件

目录 1 问题&#xff1a; 2 解决方法 方法一&#xff1a; 方法二&#xff1a; 3 查看 1 问题&#xff1a; /etc/nginx/conf.d下面没有default.conf文件。 2 解决方法 方法一&#xff1a; 自己创建default.conf文件。 vi /etc/nginx/conf.d/default.conf 添加如下内容&…

恒驰服务 | 华为云数据使能专家服务offering之大数据建设

恒驰大数据服务主要针对客户在进行智能数据迁移的过程中&#xff0c;存在业务停机、数据丢失、迁移周期紧张、运维成本高等问题&#xff0c;通过为客户提供迁移调研、方案设计、迁移实施、迁移验收等服务内容&#xff0c;支撑客户实现快速稳定上云&#xff0c;有效降低时间成本…

js字符串支持多个分隔符分割

js字符串支持多个分隔符分割 场景代码 场景 用户输入内容后&#xff0c;支持多个分隔符&#xff08;比如&#xff1a;中英文逗号&#xff0c;分号以及换号&#xff09;对字符串进行分割&#xff0c;之后提交给后台同学解析。 代码 function splitString(inputString, separat…

「专题速递」数据驱动赋能、赛事直播优化、RTC技术、低延时传输引擎、多媒体处理框架、GPU加速...

点击文末阅读原文&#xff0c; 免费报名【抖音背后的体验增长实战揭秘】专场 随着全行业视频化的演进&#xff0c;营销、知识、商业和空间的交互体验正在被重塑。这种变化不仅仅是一种抽象的趋势&#xff0c;更是关系到用户留存和业务增长的关键因素。面对这样的挑战&#xff0…

【音视频 | wav】wav音频文件格式详解——包含RIFF规范、完整的各个块解析、PCM转wav代码

&#x1f601;博客主页&#x1f601;&#xff1a;&#x1f680;https://blog.csdn.net/wkd_007&#x1f680; &#x1f911;博客内容&#x1f911;&#xff1a;&#x1f36d;嵌入式开发、Linux、C语言、C、数据结构、音视频&#x1f36d; &#x1f923;本文内容&#x1f923;&a…

Websocket传输协议是什么

WebSocket 是一种网络通信协议&#xff0c;属于 HTML5 规范的一部分。它提供了在单个长期连接上进行全双工通信的能力&#xff0c;使得数据可以从客户端发送到服务器&#xff0c;也可以从服务器发送到客户端&#xff0c;这与传统的 HTTP 请求和响应模型不同。 WebSocket 协议定…

Latex安装使用教程

在论文投稿时有些期刊要求使用Latex格式&#xff0c;比如博主现在就遇到了这个问题&#xff0c;木有办法&#xff0c;老老实实的学呗。大家可以去官网下载&#xff0c;但官网的界面设计属实有些一言难尽&#xff0c;因此我们可以使用国内的镜像。 LaTeX 基于 TeX&#xff0c;主…

输入几个数,分别输出其中的奇数和偶数

这个问题我们只需要设计几个循环嵌套在一起就可以解决&#xff0c;话不多说&#xff0c;我们直接上代码 目录 1.运行代码 2.运行结果 1.运行代码 #define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include<string.h>int main() {int arr[10] {1,2,3,4,5,6,…

测试用例设计方法 —— 场景法详解

场景法是通过运用场景来对系统的功能点或业务流程的描述&#xff0c;从而提高测试效果的一种方法。 场景法一般包含基本流和备用流&#xff0c;从一个流程开始&#xff0c;通过描述经过的路径来确定的过程&#xff0c;经过遍历所有的基本流和备用流来完成整个场景。 场景主要…

AQS面试题总结

一&#xff1a;线程等待唤醒的实现方法 方式一&#xff1a;使用Object中的wait()方法让线程等待&#xff0c;使用Object中的notify()方法唤醒线程 必须都在synchronized同步代码块内使用&#xff0c;调用wait&#xff0c;notify是锁定的对象&#xff1b; notify必须在wait后执…

【Python语言速回顾】——数据可视化基础

目录 引入 一、Matplotlib模块&#xff08;常用&#xff09; 1、绘图流程&常用图 ​编辑 2、绘制子图&添加标注 ​编辑 3、面向对象画图 4、Pylab模块应用 二、Seaborn模块&#xff08;常用&#xff09; 1、常用图 2、代码示例 ​编辑 ​编辑 ​编辑 ​…

一个基于Excel模板快速生成Excel文档的小工具

介绍 DocumentGenerator是一个Excel快速生成工具&#xff0c;目标以后还能实现Word、pdf等的文件的生成。该程序独立运行&#xff0c;可通过HTTP接口调用其生成接口。 典型使用场景为如下&#xff1a; 使用者编写模板文件使用者准备模板文件的填充JSON数据内容使用者通过网络…

网络套接字编程(二)

网络套接字编程(二) 文章目录 网络套接字编程(二)简易TCP网络程序服务端创建套接字服务端绑定IP地址和端口号服务端监听服务端运行服务端网络服务服务端启动客户端创建套接字客户端的绑定和监听问题客户端建立连接并通信客户端启动程序测试单执行流服务器的弊端 多进程版TCP网络…

CCF_A 计算机视觉顶会CVPR2024投稿指南以及论文模板

目录 CVPR2024官网&#xff1a; CVPR2024投稿链接&#xff1a; CVPR2024 重要时间节点&#xff1a; CVPR2024投稿模板: WORD: LATEX : CVPR2024_AuthorGuidelines CVPR2024投稿Topics&#xff1a; CVPR2024官网&#xff1a; https://cvpr.thecvf.com/Conferences/2024CV…

【Linux】常见指令以及具体其使用场景

君兮_的个人主页 即使走的再远&#xff0c;也勿忘启程时的初心 C/C 游戏开发 Hello,米娜桑们&#xff0c;这里是君兮_&#xff0c;随着博主的学习&#xff0c;博主掌握的技能也越来越多&#xff0c;今天又根据最近的学习开设一个新的专栏——Linux&#xff0c;相信Linux操作系…

【嵌入式开发学习02】esp32cam烧录human_face_detect实现人脸识别

Ubuntu20.04系统为esp32cam烧录human_face_detect 1. 下载esp-dl2. 安装esp-idf3. 烧录human_face_detect 如果使用ubuntu 16.04在后续的步骤中会报错如下&#xff0c;因为ubuntu 16.04不支持glibc2.23以上的版本&#xff08;可使用strings /lib/x86_64-linux-gnu/libc.so.6 | …

服务号改订阅号怎么弄

服务号和订阅号有什么区别&#xff1f;服务号转为订阅号有哪些作用&#xff1f;很多小伙伴想把服务号改为订阅号&#xff0c;但是不知道改了之后具体有什么作用&#xff0c;今天跟大家具体讲解一下。首先我们知道服务号一个月只能发四次文章&#xff0c;但是订阅号每天都可以发…

JVM——类的生命周期(加载阶段,连接阶段,初始化阶段)

目录 1.加载阶段2.连接阶段1.验证2.准备3.解析 3.初始化阶段4.总结 类的生命周期 1.加载阶段 ⚫ 1、加载(Loading)阶段第一步是类加载器根据类的全限定名通过不同的渠道以二进制流的方式获取字节码信息。 程序员可以使用Java代码拓展的不同的渠道。 ⚫ 2、类加载器在加载完类…