1.泛型概述
泛型:是JDK5中引入的特性,它提供了编译时类型安全检测机制,该机制允许在编译时检测到非法的类型它的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数
一提到参数,最熟悉的就是定义方法时有形参,然后调用此方法时传递实参。那么参数化类型怎么理解呢?顾名思义,就是将类型由原来的具体的类型参数化,然后在使用/调用时传入具体的类型
这种参数类型可以用在类、方法和接口中,分别被称为泛型类、泛型方法、泛型接口
泛型定义格式:
- <类型>:指定一种类型的格式。这里的类型可以看成是形参
- <类型1,类型2..>︰指定多种类型的格式,多种类型之间用逗号隔开。这里的类型可以看成是形参
- 将来具体调用时候给定的类型可以看成是实参,并且实参的类型只能是引用数据类型
泛型的好处:
- 把运行时期的问题提前到了编译期间
- 避免了强制类型转换
2.泛型类
泛型类的定义格式:
- 格式: 修饰符class类名< 类型 > { }
- 范例: public class Generic< T > { }
此处T可以随便写为任意标识,常见的如T、E、K、V等形式的参数常用于表示泛型
package com.study_02;
public class Generic<T> {
private T t;
public T getT() {
return t;
}
public void setT(T t) {
this.t = t;
}
}
package com.study_02;
public class GenericDemo {
public static void main(String[] args) {
Generic<String> g1 = new Generic<>();
g1.setT("林青霞");
System.out.println(g1.getT());
Generic<Integer> g2 = new Generic<>();
g2.setT(30);
System.out.println(g2.getT());
Generic<Boolean> g3 = new Generic<>();
g3.setT(true);
System.out.println(g3.getT());
}
}
3.泛型方法
泛型方法的定义格式:
- 格式:修饰符<类型>返回值类型方法名(类型变量名){}
- 范例: public void show(T t){ }
package com.study_03;
//public class Generic {
// public void show(String s) {
// System.out.println(s);
// }
//
// public void show(Integer s) {
// System.out.println(s);
// }
//
// public void show(Boolean s) {
// System.out.println(s);
// }
//}
//// 泛型类改进
//public class Generic<T> {
// public void show(T t) {
// System.out.println(t);
// }
//}
// 泛型方法改进
public class Generic{
public <T> void show(T t) {
System.out.println(t);
}
}
package com.study_03;
public class GenericDemo {
public static void main(String[] args) {
// Generic<String> g1 = new Generic<>();
// g1.show("dd");
//
// Generic<Integer> g2 = new Generic<>();
// g2.show(3);
Generic g = new Generic();
g.show("hah");
g.show(22);
g.show(true);
g.show(12.34);
}
}
4.泛型接口
泛型接口的定义格式:
- 格式:修饰符interface接口名<类型>{ }
- 范例: public interface Generic { }
package com.study_04;
public interface IGeneric<T> {
void show(T t);
}
package com.study_04;
public class Generic<T> implements IGeneric<T>{
@Override
public void show(T t) {
System.out.println(t);
}
}
package com.study_04;
public class GenericDemo {
public static void main(String[] args) {
Generic<String> g1 = new Generic<>();
g1.show("haha");
Generic<Integer> g2 = new Generic<>();
g2.show(55);
}
}
5.类型通配符
为了表示各种泛型List的父类,可以使用类型通配符
- 类型通配符:<?>
- List<?>:表示元素类型未知的List,它的元素可以匹配任何的类型
- 这种带通配符的List仅表示它是各种泛型List的父类,并不能把元素添加到其中
如果说我们不希望List<?>是任何泛型List的父类,只希望它代表某一类泛型List的父类,可以使用类型通配符的上限
- 类型通配符上限:<?extends类型>
- List<? extends Number>:它表示的类型是Number或者其子类型
除了可以指定类型通配符的上限,我们也可以指定类型通配符的下限
- 类型通配符下限:<?super类型>
- List<? super Number>:它表示的类型是Number或者其父类型
package com.study_05;
import java.util.ArrayList;
import java.util.List;
public class GenericDemo {
public static void main(String[] args) {
List<?> list1 = new ArrayList<Object>();
List<?> list2 = new ArrayList<Number>();
List<?> list3 = new ArrayList<Integer>();
System.out.println("-------");
// 类型通配符上限: <? extends 类型>
// List<? extends Number> list4 = new ArrayList<Object>();
List<? extends Number> list5 = new ArrayList<Number>();
List<? extends Number> list6 = new ArrayList<Integer>();
System.out.println("--------");
// 类型通配符下线: <? super 类型>
List<? super Number> list7 = new ArrayList<Object>();
List<? super Number> list8 = new ArrayList<Number>();
// List<? super Number> list9 = new ArrayList<Integer>();
}
}
6.可变参数
可变参数又称参数个数可变,用作方法的形参出现,那么方法参数个数就是可变的了
- 格式:修饰符返回值类型方法名(数据类型…变量名){ }
- 范例: public static int sum(int…a){ }
可变参数注意事项
- 这里的变量其实是一个数组
- 如果一个方法有多个参数,包含可变参数,可变参数要放在最后
package com.study_06;
public class ArgsDemo01 {
public static void main(String[] args) {
System.out.println(sum(10,20,30,40,50,60));
}
// public static int sum(int b,int... a) {
// return 0;
// }
public static int sum(int... a) {
// System.out.println(a);
int sum = 0;
for (int i : a) {
sum += i;
}
return sum;
}
}
7.可变参数的使用
Arrays.工具类中有-一个静态方法: \
- publicstatic List asList(T.. a):返回由指定数组支持的固定大小的列表
- 返回的集合不能做增删操作, 可以做修改操作
List接口中有一个静态方法:
- public static List of(… elements): 返回包含任意数量元素的不可列表
- 返回的集合不能做增删改操作
Set接口中有一个静态方法:
- public static Set of(… elements) :返回一个包含任意数量元素的不可集合
- 在给元素的时候,不能给重复的元素
- 返回的集合不能做增删操作,没有修改的方法
package com.study_06;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
public class ArgsDemo02 {
public static void main(String[] args) {
// List<String> list = Arrays.asList("hello", "niaho");
//
//// list.add("k"); // UnsupportedOperationException
// list.remove("hello"); // UnsupportedOperationException
// list.set(1,"javase");
//
// System.out.println(list);
// List<String> list = List.of("hello", "world","world");
// list.add("javaee"); // UnsupportedOperationException
// list.remove("hello"); // UnsupportedOperationException
// list.set(1,"javase"); // UnsupportedOperationException
// System.out.println(list);
// Set<String> set = Set.of("hello", "world", "java","hello"); // IllegalArgumentException
Set<String> set = Set.of("hello", "world", "java");
// set.add("hah"); // UnsupportedOperationException
// set.remove("world"); // UnsupportedOperationException
System.out.println(set);
}
}