public class Generic03 {
public static void main(String[] args) {
//注意:E是具体的数据类型,在定义Person对象的时候指定的,即在编译期间,就确定了E什么类型
Person person = new Person<>("兮动人");
person.show();
}
}
class Person {
E s ;//E表示 s 的数据类型,该数据类型是在定义Person对象的时候指定的,即在编译期间就确定了E是什么类
public Person(E s) {//E也可以是参数类型
this.s = s;
}
public E f() {//返回类型使用E表示
return s;
}
public void show() {
System.out.println(s.getClass());
}
}
class Person1 {
String s ;
public Person1(String s) {
this.s = s;
}
public String f() {
return s;
}
}
public class GenericExercise {
public static void main(String[] args) {
System.out.println("=======HashSet方式存储========");
//使用泛型方式给 HashSet放入三个学生对象
HashSet students = new HashSet<>();
students.add(new Student("xdr", 25));
students.add(new Student("jack", 26));
students.add(new Student("lucy", 27));
//遍历
for (Student student : students) {
System.out.println(student);
}
System.out.println("=======HashMap方式存储========");
//使用泛型方式给 HashMap 放入三个学生对象
HashMap hashMap = new HashMap();
hashMap.put("tom", new Student("tom", 20));
hashMap.put("jerry", new Student("jerry", 21));
hashMap.put("mike", new Student("mike", 22));
//迭代器 EntrySet
Set> entries = hashMap.entrySet();
Iterator> iterator = entries.iterator();
while (iterator.hasNext()) {
Map.Entry next = iterator.next();
System.out.println(next.getKey() + "-" + next.getValue());
}
}
}
class Student {
private String name;
private int age;
public Student(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + ''' +
", age=" + age +
'}';
}
}
4. 泛型使用的注意事项和细节
interface List{} , public class HashSet{}..说明:T,E只能是引用类型,看看下面语句是否正确?
给泛型指向数据类型是要求是引用数据类型,不能是基本数据类型
List list = new ArrayList{};//正确
List list2 = new ArrayList();//错误
在给泛型指定具体类型后,可以传入该类型或者其子类类型
public class GenericDetail {
public static void main(String[] args) {
// 因为E指定了A类型,所以只能传入该类型或其子类类型
Pig aPig = new Pig(new A());
aPig.f();
Pig bPig = new Pig(new B());
bPig.f();
}
}
class A {}
class B extends A{}
class Pig {
E e;
public Pig(E e) {
this.e = e;
}
public void f() {
System.out.println(e.getClass());
}
}
泛型使用形式
ArrayList list1 = new ArrayList();
List list2 = new ArrayList();
//在实际开发中,往往简写。编译器会进行类型推断,推荐使用这种写法
ArrayList list3 = new ArrayList();
List list4 = new ArrayList();
如果这样写List list = new ArrayList();默认给它的泛型是【 E 就是 Object】
ArrayList arrayList1 = new ArrayList();
//等价于
ArrayList
public class Employee {
private String name;
private double sal;
private MyDate birthday;
public Employee(String name, double sal, MyDate birthday) {
this.name = name;
this.sal = sal;
this.birthday = birthday;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getSal() {
return sal;
}
public void setSal(double sal) {
this.sal = sal;
}
public MyDate getBirthday() {
return birthday;
}
public void setBirthday(MyDate birthday) {
this.birthday = birthday;
}
@Override
public String toString() {
return "nEmployee{" +
"name='" + name + ''' +
", sal=" + sal +
", birthday=" + birthday +
'}';
}
}
public class MyDate implements Comparable{
private int year;
private int month;
private int day;
public MyDate(int year, int month, int day) {
this.year = year;
this.month = month;
this.day = day;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public int getDay() {
return day;
}
public void setDay(int day) {
this.day = day;
}
@Override
public String toString() {
return "MyDate{" +
"year=" + year +
", month=" + month +
", day=" + day +
'}';
}
@Override
public int compareTo(MyDate o) { //把对year-month-day比较放在这里
int yearMinus = year - o.getYear();
if(yearMinus != 0) {
return yearMinus;
}
//如果year相同,就比较month
int monthMinus = month - o.getMonth();
if(monthMinus != 0) {
return monthMinus;
}
return day - o.getDay();
}
}
public class GenericExercise02 {
public static void main(String[] args) {
ArrayList employees = new ArrayList<>();
employees.add(new Employee("tom", 20000, new MyDate(1980,12,11)));
employees.add(new Employee("jack", 12000, new MyDate(2001,12,12)));
employees.add(new Employee("tom", 50000, new MyDate(1980,12,10)));
System.out.println("employees=" + employees);
employees.sort(new Comparator() {
@Override
public int compare(Employee emp1, Employee emp2) {
//先按照name排序,如果name相同,则按生日日期的先后排序。【即:定制排序】
//先对传入的参数进行验证
if(!(emp1 instanceof Employee && emp2 instanceof Employee)) {
System.out.println("类型不正确..");
return 0;
}
//比较name
int i = emp1.getName().compareTo(emp2.getName());
if(i != 0) {
return i;
}
//下面是对birthday的比较,因此,我们最好把这个比较,放在MyDate类完成
//封装后,将来可维护性和复用性,就大大增强.
return emp1.getBirthday().compareTo(emp2.getBirthday());
}
});
System.out.println("==对雇员进行排序==");
System.out.println(employees);
}
}
6. 自定义泛型类
基本语法
class 类名 {// ...表示可以有多个泛型
成员
}
注意细节
普通成员可以使用泛型(属性、方法)
使用泛型的数组,不能初始化
静态方法中不能使用类的泛型
泛型类的类型,是在创建对象时确定的(因为创建对象时,需要指定确定类型)
如果在创建对象时,没有指定类型,默认为Object
说明自定义泛型代码是否正确,并说明原因
Tiger g = new Tiger<>("xdr");
g.setT(10.9);//T
g.setT("yy");//F,类型不对,setT方法是Double类型的,yy是字符串类型
System.out.println(g);.//T
Tiger g2 = new Tiger("xdr~~");//T,这样写表示T、R、M 都是 Object类型
g2.setT("yy");//T
System.out.println("g2=" + g2);//T
class Tiger {
public Tiger(T t, R r, M m) {
this.t = t;
this.r = r;
this.m = m;
}
public Tiger(String name) {
this.name = name;
}
}
7. 自定义泛型接口
基本语法
interface 接口名 {
}
注意细节
接口中,静态成员也不能使用泛型(这个和泛型类规定一样)
泛型接口的类型,在继承接口或者实现接口时确定
没有指定类型,默认为Object
应用实例
//在继承接口 指定泛型接口的类型
interface IA extends IUsb {
}
//当我们去实现IA接口时,因为IA在继承IUsu 接口时,指定了U 为String R为Double
//,在实现IUsu接口的方法时,使用String替换U, 是Double替换R
class AA implements IA {
@Override
public Double get(String s) {
return null;
}
@Override
public void hi(Double aDouble) {
}
@Override
public void run(Double r1, Double r2, String u1, String u2) {
}
}
//实现接口时,直接指定泛型接口的类型
//给U 指定Integer 给 R 指定了 Float
//所以,当我们实现IUsb方法时,会使用Integer替换U, 使用Float替换R
class BB implements IUsb {
@Override
public Float get(Integer integer) {
return null;
}
@Override
public void hi(Float aFloat) {
}
@Override
public void run(Float r1, Float r2, Integer u1, Integer u2) {
}
}
//没有指定类型,默认为Object
//建议直接写成 IUsb
public class CustomMethodGeneric {
public static void main(String[] args) {
Car car = new Car();
//当调用方法时,传入的参数,编译器就会确定类型
car.fly("宝马", 100);
System.out.println("==============");
car.fly(100.1, 100);
//测试
// T->String R->ArrayList
Fish fish = new Fish<>();
fish.hello(new ArrayList(),1.1f);
}
}
//泛型方法,可以定义到普通类中,也可以
class Car {
public void run() {//普通方法
}
//1.泛型,就是提供给 fly 使用的
public void fly(T t, R r) {//泛型方法
System.out.println(t.getClass());
System.out.println(r.getClass());
}
}
class Fish { //泛型类
public void run() {//普通方法
}
public void eat(U u, M m){//泛型方法
}
//1.下面hi方法不是泛型方法
//2.hi方法使用了类声明,泛型
public void hi(T t) {
}
//泛型方法,可以使用类声明的泛型,也可以使用自己声明泛型
public void hello(R r, K k) {
System.out.println(r.getClass());
System.out.println(k.getClass());
}
}
练习:下面代码是否正确,如果有错误,修改正确,并说明输出什么?
public class CustomMethodGenericExercise {
public static void main(String[] args) {
//下面代码输出什么?
// T->String R->Integer M->Double
Apple apple = new Apple<>();
apple.fly(10);//10会被自动装箱 Integer 10,输出 Integer
apple.fly(new Dog());// Dog
}
}
class Apple{//自定义泛型类
public void fly(E e){//泛型方法
System.out.println(e.getClass().getSimpleName());//类型的类名
}
//public void eat(U u){}//错误,因为 U 没有被声明
public void run(M m){}//正确
}
class Dog {}
9. 泛型的继承和通配符
泛型的继承和通配符说明
泛型不具备继承性
List list = new ArrayList();//错误
>:支持任意泛型类型
extends A>:支持A类以及A类的子类,规定了泛型的上限
super A>:支持A类以及A类的父类,不限于直接父类,规定了泛型的下限
举例说明:
public class GenericExtends {
public static void main(String[] args) {
Object o = new String("xdr");
//List list = new ArrayList();
//举例说明下面三个方法的使用
ArrayList list1 = new ArrayList<>();
ArrayList list2 = new ArrayList<>();
ArrayList list3 = new ArrayList<>();
ArrayList list4 = new ArrayList<>();
ArrayList list5 = new ArrayList<>();
// List> c ,可以接收任意类型
printCollection1(list1);
printCollection1(list2);
printCollection1(list3);
printCollection1(list4);
printCollection1(list5);
// list extends AA> 可以接受 AA或AA子类
printCollection2(list3);
printCollection2(list4);
printCollection2(list5);
// list super AA> 可以接受AA类以及AA的父类,不限于直接父类
printCollection3(list1);
printCollection3(list3);
}
public static void printCollection1(List> c) {
for (Object object : c) { //通配符,取出时,就是Object
System.out.println(object);
}
}
// ? extends AA 表示上限,可以接受 AA或AA子类
public static void printCollection2(List extends AA> c){
for (Object object : c) {
System.out.println(object);
}
}
// ? super 子类类名AA:支持AA类以及AA的父类,不限于直接父类
//规定了泛型的下限
public static void printCollection3(List super AA> c) {
for (Object object : c) {
System.out.println(object);
}
}
}
class AA {}
class BB extends AA {
}
class CC extends BB {
}
练习: 定义个泛型类 DAO,在其中定义一个Map成员变量,Map的键为String类型,值为T类型。 分别创建以下方法: (1) public void save(String id,T entity):保存T类型的对象到Map成员变量中 (2) public T get(String id):从 map中获取id对应的对象 (3) public void update(String id,T entity):替换map 中key为id的内容,改为entity对象 (4) public List list():返回map中存放的所有T对象 (5) public void delete(String id):删除指定id对象
public class DAO {//泛型类
private Map map = new HashMap<>();
public T get(String id) {
return map.get(id);
}
public void update(String id, T entity) {
map.put(id, entity);
}
//返回 map 中存放的所有 T 对象
//遍历 map[k-v] ,将map的所有 value(T entity),封装到 ArrayList 返回即可
public List list() {
List list = new ArrayList<>();
//遍历map
Set keySet = map.keySet();
for (String key : keySet) {
//map.get(key) 返回就是 User对象->ArrayList
list.add(map.get(key));//也可以直接使用本类的 get(String id)
}
return list;
}
public void delete(String id) {
map.remove(id);
}
public void save(String id, T entity) {//把entity保存到map
map.put(id, entity);
}
}
User
public class User {
private int id;
private int age;
private String name;
public User(int id, int age, String name) {
this.id = id;
this.age = age;
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", age=" + age +
", name='" + name + ''' +
'}';
}
}
@Test
public void testList() {
//说明
//这里给 T 指定类型是User
DAO dao = new DAO<>();
dao.save("001", new User(1,10,"jack"));
dao.save("002", new User(2,18,"tom"));
dao.save("003", new User(3,20,"lucy"));
List list = dao.list();
System.out.println("list=" + list);
dao.update("003", new User(3, 22, "rose"));
dao.delete("001");//删除
System.out.println("===修改数据后====");
list = dao.list();
System.out.println("list=" + list);
System.out.println("===单个获取数据===");
System.out.println("id=003 " + dao.get("003"));
}
评论列表(0条)