泛型:是JDK5之后引入的新特性,它提供了编译时类型安全检测机制,该机制允许编译时检测到非法的类型,它的本质是参数化类型,
也就是说所操作的数据类型被指定为一个参数
一提到参数,最熟悉的就是定义方法时有形参,然后调用此方法时传递实参。那么参数化类型怎么理解呢?
顾名思义,就是将类型由原来的具体的类型参数化,然后在使用/调用时传入具体的类型
这种参数类型可以用在类、方法和接口中,分别被称为泛型类、泛型方法、泛型接口
泛型定义格式:
<类型>:指定一种类型的格式。这里的类型可以看成是形参<类型1,类型2…>:指定多种类型的格式,多种类型之间用逗号隔开。这里的类型可以看成是形参将来具体调用的时候给定的类型可以看成是实参,并且实参的类型只能是引用数据类型 /* Collection 存储字符串并遍历 验证泛型的好处 */ public class GenericDemo { public static void main(String[] args) { //创建集合对象 // Collection c = new ArrayList(); Collection<String> c = new ArrayList<String>(); //添加元素 c.add("hello"); c.add("world"); c.add("java"); // c.add(100); //循环遍历 Iterator it = c.iterator(); while (it.hasNext()){ // Object obj = it.next(); // System.out.println(obj); String s = (String)it.next();//ClassCastException System.out.println(s); } } }泛型的好处:
把运行时期的问题提前到了编译期间避免了强制类型转换泛型类的定义格式:
格式:修饰符 class 类名<类型>{ }范例:public class Generic{ } 此处T可以随便写为任意标识,常见的如T、E、K、V等形式的参数常用于标识泛型 /* 泛型类 */ public class Generic<T> { private T t; public T getT() { return t; } public void setT(T t) { this.t = t; } } public class GenericDemo { public static void main(String[] args) { Student s = new Student(); s.setName("陈大帅"); System.out.println(s.getName()); Teacher t = new Teacher(); t.setAge(30); //t.setName("caa"); System.out.println(t.getAge()); System.out.println("--------"); Generic<String> g = new Generic<String>(); g.setT("七格格"); System.out.println(g.getT()); Generic<Integer> g2 = new Generic<Integer>(); g2.setT(11); System.out.println(g2.getT()); } } ------------- 陈大帅 30 -------- 七格格 11泛型方法的定义格式:
格式:修饰符<类型> 返回值类型方法名(类型 变量名){ } 范例:public void show(T t){ } public class Generic{ public<T> void show(T t){ System.out.println(t); } } public class GenericDemo { public static void main(String[] args) { /* Generic g = new Generic(); g.show("林黛玉"); g.show(24); g.show(true);*/ // g.show(3.3); /* Generic<String> g1 = new Generic<String>(); g1.show("张三"); */ Generic g = new Generic(); g.show("String"); g.show(3.3); } }泛型接口的定义格式:
格式:修饰符 interface 接口名<类型>{ }范例:public interface Generic{ } package com.GenericTest3; /* 泛型接口 */ public interface Generic<T> { void show(T t); } /* 泛型接口实现类 */ public class GenericImpl<T> implements Generic<T> { @Override public void show(T t) { System.out.println(t); } } /* 泛型测试类 */ public class GenericDemo { public static void main(String[] args) { Generic<String> g = new GenericImpl<String>(); g.show("hahah"); Generic<Integer> g2= new GenericImpl<Integer>(); g2.show(33); // g2.show("String"); Generic g3 = new GenericImpl(); g3.show(3.2); g3.show(true); } } ------------- hahah 33 3.2 true为了表示各种泛型List的父类,可以使用类型通配符
类型通配符:<?>List<?>: 表示元素类型未知的List,它的元素可以匹配任何的类型这种带通配符的List仅表示它是各种泛型List的父类,并不能把元素添加到其中如果说我们不希望List<?>是任何泛型List的父类,只希望它代表某一类泛型List的父类,可以使用类通配符的上限
类通配符上限:<?extends 类型>List<? extends Number>: 它表示的类型是Number或者其子类型除了可以指定类型通配符的上限,我们也可以指定类型通配符的下限
类通配符下限:<? super 类型>List<? super Number> :他表示的类型是Number或者其父类型>可变参数又称参数个数可变,用作方法的形参出现,那么方法参数个数就是可变的了
格式:修饰符 返回值类型 方法名(数据类型 …变量名){ }范例:public static int sum(int …a){ } public class ArgsDemo { public static void main(String[] args) { System.out.println(sum(10,20)); System.out.println(sum(10,20,30)); System.out.println(sum(10,20,30,40)); System.out.println(sum(10,20,30,40,50)); } // public static int sum(int b,int ...a){ // return 0; // } public static int sum(int ...a){ // return 0; int sum = 0; for (int i : a){ sum+=i; } return sum; } }可变参数的注意事项
这里的变量其实是一个数组如果一个方法有多个参数,包含可变参数,可变参数要放在最后Arrays工具类中有一个静态方法
public static List asList(T… a): 返回由指定数组支持的固定大小的列表返回的集合不能做增删操作,可以做修改操作 public class ArgsDemo02 { public static void main(String[] args) { //public static <T> List<T> asList(T... a): 返回由指定数组支持的固定大小的列表 List<String> list = Arrays.asList("hello", "world", "java"); // list.add("dididi");//UnsupportedOperationException // list.remove("hello");//UnsupportedOperationException list.set(1,"hahaah"); System.out.println(list); } } ------------- [hello, hahaah, java]List接口中有一个静态方法:
public static List of(E… elements): 返回包含任意元素的不可变列表返回的集合不能做增删改操作 List<String> list = List.of("hello","world","hhhh","world"); list.add("javaee");//UnsupportedPoerationException list.remove("hello")//UnsupportedPoerationException list.set(1,"javaee")//UnsupportedPoerationExceptionSet接口中有一个静态方法:
public static Set of(E… elements): 返回一个包含任意元素的不可变集合返回的集合不能做增删操作,没有修改的方法 //Set<String> set = Set.of("hello","world","java","hello");//IllegalArgumentException Set<String> set = Set.of("hello","world","java"); set.add("javaee");//UnsupportedPoerationException set.remove("hello");//UnsupportedPoerationException sout(set);