目录
一、为什么要有泛型
2.什么是泛型?
3.如何确定泛型?
二、泛型的使用
1.在集合中使用泛型
三、自定义泛型结构
1.自定义泛型类、泛型接口
2.自定义泛型方法
3.泛型类和泛型方法使用举例
四、泛型在继承方面的体现
五、通配符
1、通配符的使用
2.使用通配符后数据的读取和写入要求
3.有限制条件的通配符的使用
六、File类
1.File类的实例化
2.File类的常用方法1
3.File类的常用方法2
1.为什么要有泛型?
①元素的类型不确定,如何管理如何保存元素是确定的,就把元素的类型设成一个参数。
属性的类型不确定,方法的返回值类型、参数类型不确定,构造器的参数类型不确定,把这些不确定的设成泛型。在类或接口标识。
②操作更安全,更简便
③
①泛型是类型参数,不是一个具体的类,只是一个类的标识
②因为是类的标识,所以不能是基本数据类型
①继承或实现接口
②用这个类型创建对象
③传入实参时
* 泛型的使用 * 1.jdk 5.0新增的特性 * * 2.在集合中使用泛型: * 总结: * ① 集合接口或集合类在jdk5.0时都修改为带泛型的结构。 * ② 在实例化集合类时,可以指明具体的泛型类型 * //【泛型是一个类型的名字,不是变量】 * //【指明具体泛型类型的时机,是实例化集合类时】 * * ③ 指明完以后,在集合类或接口中凡是定义类或接口时,内部结构(比如:方法、构造器、属性等)使用到类的泛型的位置,都指定为实例化的泛型类型。 * 比如:add(E e) --->实例化以后:add(Integer e) * ④ 注意点:泛型的类型必须是类,不能是基本数据类型。需要用到基本数据类型的位置,拿包装类替换 * ⑤ 如果实例化时,没有指明泛型的类型。默认类型为java.lang.Object类型。 * * 3.如何自定义泛型结构:泛型类、泛型接口;泛型方法。
加了泛型,减少了instanceOf和强转操作
public class GenericTest {
//在集合中使用泛型之前的情况:
@Test
public void test1(){
ArrayList list = new ArrayList();
//需求:存放学生的成绩
list.add(78);
list.add(76);
list.add(89);
list.add(88);
//问题一:类型不安全
//【编译的时候没有类型检查,命名存放的是int成绩,这里存了一个字符串】
// list.add("Tom");
for(Object score : list){
//问题二:强转时,可能出现ClassCastException
int stuScore = (Integer) score;
System.out.println(stuScore);
}
}
//在集合中使用泛型的情况:以ArrayList为例
@Test
public void test2(){
// ArrayList list = new ArrayList();//【泛型是一个类型的标识,类型不能是基本数据类型】
ArrayList list = new ArrayList();
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 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 map = new HashMap<>();
map.put("Tom",87);
map.put("Jerry",87);
map.put("Jack",67);
// map.put(123,"ABC");
//泛型的嵌套
//【返回Set,Set里面是Entry,Entry内部key和value的类型】
//【Entry没有对外暴露,Entry是内部接口,Map.Entry,如果想省略Map.,就要import java.util.Map.*;】
Set> entry = map.entrySet();
Iterator> iterator = entry.iterator();
while(iterator.hasNext()){
Map.Entry e = iterator.next();
String key = e.getKey();
Integer value = e.getValue();
System.out.println(key + "----" + value);
}
}
}
//异常类不能声明为泛型类 //public class MyExceptionextends Exception{ //}
import java.util.ArrayList;
import java.util.List;
/**
* 自定义泛型类
*/
public class Order {
String orderName;
int orderId;
//在类的内部结构就可以使用类的泛型
T orderT;
//【Order类有些属性的类型,方法的参数类型、返回值类型不确定,构造器的形参类型不确定等
// 给Order加上泛型或者,然后可以给这个类不确定的地方加上标识】
//【T并不是类,T是一个参数,是个变量(给它赋各种类型),在实例化或继承实现接口时指明T到底是什么类型。
// 写的时候可以当作是类型】
public Order(){
//编译不通过
// T[] arr = new T[10];
//【实际具体的类,才能直接new,而T不是一个具体的类,只是一个不确定类的标识】
//编译通过
T[] arr = (T[]) new Object[10];
//【new Object类型的数组,放的数据是T或者T子类的对象】
//【真的要使用arr[0]时,要new T(确定了的),或new T的子类(确定了的),不能new Object,但是这里强转T[],所以也行】
}
public Order(String orderName,int orderId,T orderT){
this.orderName = orderName;
this.orderId = orderId;
this.orderT = orderT;
}
//如下的三个方法都不是泛型方法
public T getOrderT(){
return orderT;
}
public void setOrderT(T orderT){
this.orderT = orderT;
}
@Override
public String toString() {
return "Order{" +
"orderName='" + orderName + '\'' +
", orderId=" + orderId +
", orderT=" + orderT +
'}';
}
//静态方法中不能使用类的泛型
// public static void show(T orderT){
// System.out.println(orderT);
// }
//【泛型指定:造对象时。而静态结构要早于对象的创建,类型还没指定,静态结构就要先调用了,就矛盾了】
public void show(){
//编译不通过
// try{
//
//
// }catch(T t){//【万一T不是异常的类型,那不就过去不了吗】
//
// }
}
//【泛型方法】
//泛型方法:在方法中出现了泛型的结构,【泛型参数与类的泛型参数没有任何关系】。
//【类用T,方法用E,类用E,方法用T,总之泛型方法的标识要和类的不同】
//换句话说,泛型方法所属的类是不是泛型类都没有关系。
//泛型方法,可以声明为静态的。原因:泛型参数是在调用方法时确定的。并非在实例化类时确定。
//【这里的E和在类旁边生命的类T没关系,E在调用copyFromArrayToList方法时确定】
//【public static List copyFromArrayToList(E[] arr){}
// 此时编译器会认为有个类叫E,而不是认为泛型参数】
public static List copyFromArrayToList(E[] arr){//【在前面加上,编译器才知道不是有个类叫E,而是泛型参数】
ArrayList list = new ArrayList<>();
for(E e : arr){
list.add(e);
}
return list;
}
}
泛型不同的引用不能相互赋值
import java.util.ArrayList;
import java.util.List;
public class SubOrder extends Order {//【SubOrder:不是泛型类】
public static List copyFromArrayToList(E[] arr){
ArrayList list = new ArrayList<>();
for(E e : arr)
list.add(e);
}
return list;
}
}
/
public class SubOrder1 extends Order {//SubOrder1:【仍然是泛型类】
}
public class GenericTest1 {
@Test
public void test1(){
//如果定义了泛型类,【当实例化时没有指明类的泛型,则认为此泛型类型为Object类型】
//要求:如果大家定义了类是带泛型的,建议在实例化时要指明类的泛型。
Order order = new Order();
order.setOrderT(123);
order.setOrderT("ABC");
//建议:实例化时指明类的泛型
Order order1 = new Order<>("orderAA",1001,"order:AA");
order1.setOrderT("AA:hello");
}
@Test
public void test2(){
SubOrder sub1 = new SubOrder();
//【由于子类在继承带泛型的父类时,指明了泛型类型。则实例化子类对象时,不再需要指明泛型。】
sub1.setOrderT(1122);
SubOrder1 sub2 = new SubOrder1<>();
sub2.setOrderT("order2...");
}
@Test
public void test3(){
ArrayList list1 = null;
ArrayList list2 = new ArrayList();
//【泛型不同的引用不能相互赋值】。
// list1 = list2;
Person p1 = null;
Person p2 = null;
p1 = p2;
}
//测试泛型方法
@Test
public void test4(){
Order order = new Order<>();
Integer[] arr = new Integer[]{1,2,3,4};
//【泛型方法在调用时,才指明泛型参数的类型】。
//【这里的方法的泛型和类的泛型没有任何关系。T、E,所以要写不同的标识区分】
List list = order.copyFromArrayToList(arr);
System.out.println(list);
}
}
见1
public class DAOTest {
@Test
public void test1(){
CustomerDAO dao1 = new CustomerDAO();
dao1.add(new Customer());
List list = dao1.getForList(10);
StudentDAO dao2 = new StudentDAO();
Student student = dao2.getIndex(1);
}
}
/**
*
* 【体会什么时候用泛型类、泛型方法】
* @author shkstart
* @create 2019 上午 11:50
*
* DAO:data(base) access object
* //【数据访问对象。操作数据库时,要提供一个java类,叫DAO,
* //在这个类中定义操作数据库的共用操作。
* //数据库里有很多表,一张数据表对应java中一个类,(ORM思想,Object relation Mapping对象关系映射),让一个表对应一个java类
* //操作哪张表,就是操作哪个类,
* //加一条记录就是多造一个类的对象;修改属性,就是给对象的属性set;查询,return;查询多个,return List。
*
* //数据库中很多张表 --> 很多个类,
* //不确定操作哪个类,就给DAO加上泛型,
* //提供具体的DAO的子类(只能用来操作某一个表),如CustomerDao,指明操作Customer
* //提供对应表的类】
*/
public class DAO {//表的共性操作的DAO
//添加一条记录
public void add(T t){
}
//删除一条记录
public boolean remove(int index){
return false;
}
//修改一条记录
public void update(int index,T t){
}
//查询一条记录
public T getIndex(int index){
return null;
}
//查询多条记录
public List getForList(int index){
return null;
}
//泛型方法
//举例:获取表中一共有多少条记录?//【E是Long】
// 获取最大的员工入职时间?//【返回Date】
public E getValue(){
return null;
}
}
public class Customer { //此类对应数据库中的customers表。
// 【在customers表中添加一条记录,就是创建一个Customer类的对象】
}
///
public class CustomerDAO extends DAO{//只能操作某一个表(customers表)的DAO
}
/**
*
* 1. 泛型在继承方面的体现
*
*
* 2. 通配符的使用
*
*/
public class GenericTest {
/*
1. 泛型在继承方面的体现
虽然类A是类B的父类,但是G 和G二者不具备子父类关系,二者是【并列】关系。
补充:类A是类B的父类,A 是 B 的父类
//【实现类也行】
*/
@Test
public void test1(){
Object obj = null;
String str = null;
obj = str;//【子父类关系。多态】
Object[] arr1 = null;
String[] arr2 = null;
arr1 = arr2;//【子父类关系。多态】
//编译不通过
// Date date = new Date();
// str = date;//【String和Date不具备子父类关系,是并列的两个类】
List
见四
* File类的使用
*
* 1. File类的一个对象,代表一个文件或一个文件目录(俗称:文件夹)
* 2. File类声明在java.io包下
* 3. File类中涉及到关于文件或文件目录的创建、删除、重命名、修改时间、文件大小等方法,
* //【没涉及到修改文件里面的内容】
* 并未涉及到写入或读取文件内容的操作。如果需要读取或写入文件内容,必须使用【IO流】来完成。
* 4. 后续File类的对象常会作为【参数】传递到流的构造器中,【指明读取或写入的"终点"】.
*
public class FileTest {
/*
1.如何创建File类的实例
File(String filePath)
File(String parentPath,String childPath)
File(File parentFile,String childPath)
2.
相对路径:相较于某个路径下,指明的路径。
绝对路径:包含【盘符】在内的文件或文件目录的路径
3.路径分隔符
windows:\\
unix:/
*/
@Test
public void test1(){
//构造器1
File file1 = new File("hello.txt");//相对于当前module
//【右键day08,show in explorer,
// D:\develope_tools\尚硅谷_javaSE资料\课件笔记源码资料\4_代码\第2部分:Java高级编程\JavaSenior\day_08】
File file2 = new File("D:\\workspace_idea1\\JavaSenior\\day08\\he.txt");
// File file2 = new File("D:\\develope_tools\\尚硅谷_javaSE资料\\课件笔记源码资料\\4_代码\\第2部分:Java高级编程\\JavaSenior\\day_08");
//【为什么是双\\,因为一个\在java里表示转义】
System.out.println(file1);
System.out.println(file2);//【此时仅仅是一个内存层面的对象】
//构造器2:
File file3 = new File("D:\\workspace_idea1","JavaSenior");
System.out.println(file3);
//构造器3:
File file4 = new File(file3,"hi.txt");
System.out.println(file4);
//【现在他们都是内存上的对象,而不是硬盘上的文件】
}
/*
public String getAbsolutePath():获取绝对路径
public String getPath() :获取路径
public String getName() :获取名称
public String getParent():获取上层文件目录路径。若无,返回null
public long length() :获取文件长度(即:字节数)。不能获取目录的长度。
public long lastModified() :获取最后一次的修改时间,毫秒值
如下的两个方法适用于【文件目录】:
public String[] list() :获取指定目录下的所有文件或者文件目录的名称数组
public File[] listFiles() :获取指定目录下的所有文件或者文件目录的File数组
*/
@Test
public void test2(){
File file1 = new File("hello.txt");
File file2 = new File("d:\\io\\hi.txt");
System.out.println(file1.getAbsolutePath());
System.out.println(file1.getPath());
System.out.println(file1.getName());
System.out.println(file1.getParent());
System.out.println(file1.length());
System.out.println(new Date(file1.lastModified()));
System.out.println();
System.out.println(file2.getAbsolutePath());//【d:\io\hi.txt】
System.out.println(file2.getPath());//【d:\io\hi.txt,创建时写的是什么,输出的就是什么】
System.out.println(file2.getName());
System.out.println(file2.getParent());
System.out.println(file2.length());
System.out.println(file2.lastModified());
}
@Test
public void test3(){
File file = new File("D:\\workspace_idea1\\JavaSenior");
String[] list = file.list();//【往给的目录下找】
for(String s : list){
System.out.println(s);
}
System.out.println();
File[] files = file.listFiles();
for(File f : files){
System.out.println(f);
}
}
/*
public boolean renameTo(File dest):把文件重命名为指定的文件路径
比如:file1.renameTo(file2)为例:
【要想保证返回true,需要file1在硬盘中是存在的,且file2不能在硬盘中存在。】
*/
@Test
public void test4(){
File file1 = new File("hello.txt");
File file2 = new File("D:\\io\\hi.txt");
boolean renameTo = file1.renameTo(file2);//【此时file1在硬盘中不存在了,fiel2在硬盘中存在了】
System.out.println(renameTo);
}
/*
public boolean isDirectory():判断是否是文件目录
public boolean isFile() :判断是否是文件
//【File就分为文件、文件目录(文件夹)】
public boolean exists() :判断是否存在//【在硬盘中是否存在】
public boolean canRead() :判断是否可读
public boolean canWrite() :判断是否可写
public boolean isHidden() :判断是否隐藏
*/
@Test
public void test5(){
File file1 = new File("hello.txt");
file1 = new File("hello1.txt");
System.out.println(file1.isDirectory());
System.out.println(file1.isFile());
System.out.println(file1.exists());
System.out.println(file1.canRead());
System.out.println(file1.canWrite());
System.out.println(file1.isHidden());
System.out.println();
File file2 = new File("d:\\io");
file2 = new File("d:\\io1");
System.out.println(file2.isDirectory());
System.out.println(file2.isFile());
System.out.println(file2.exists());
System.out.println(file2.canRead());
System.out.println(file2.canWrite());
System.out.println(file2.isHidden());
}
/*
创建硬盘中对应的文件或文件目录
public boolean createNewFile() :创建文件。若文件存在,则不创建,返回false
public boolean mkdir() :创建文件目录。如果此文件目录存在,就不创建了。如果此文件目录的上层目录不存在,也不创建。
public boolean mkdirs() :创建文件目录。如果此文件目录存在,就不创建了。如果上层文件目录不存在,一并创建
删除磁盘中的文件或文件目录
public boolean delete():删除文件或者文件夹
删除注意事项:Java中的删除不走回收站。
*/
@Test
public void test6() throws IOException {
File file1 = new File("hi.txt");
if(!file1.exists()){
//文件的创建
file1.createNewFile();
System.out.println("创建成功");
}else{//文件存在
file1.delete();
System.out.println("删除成功");
}
}
@Test
public void test7(){
//文件目录的创建
File file1 = new File("d:\\io\\io1\\io3");
boolean mkdir = file1.mkdir();
if(mkdir){
System.out.println("创建成功1");
}
File file2 = new File("d:\\io\\io1\\io4");
boolean mkdir1 = file2.mkdirs();
if(mkdir1){
System.out.println("创建成功2");
}
//【要想删除成功,io4文件目录下不能有子目录或文件】
File file3 = new File("D:\\io\\io1\\io4");
file3 = new File("D:\\io\\io1");
System.out.println(file3.delete());
}
}
见1
见1