博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java泛型的基本使用
阅读量:5109 次
发布时间:2019-06-13

本文共 3879 字,大约阅读时间需要 12 分钟。

  Java1.5版本推出了泛型,虽然这层语法糖给开发人员带来了代码复用性方面的提升,但是这不过是编译器所做的一层语法糖,在真正生成的字节码中,这类信息却被擦除了。笔者发现很多几年开发经验的程序员,依然不善于使用Java泛型,本文将从Java泛型的基本使用入手,在今后的多篇博文里,对泛型的使用做个总结。本文不会深入Java泛型的实现原理,只会介绍Java泛型的使用。

实验准备

  首先需要创建一个类继承体系。以商品为例,每种商品都有基本的名称属性。在大数据应用中,数据表和服务都可以作为商品,表有行数属性,服务有方法属性,实现如代码清单1所示。

代码清单1

class Auction {    private String name;    public Auction(String name) {        this.name = name;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }        public String toString() {        return name;    }}class Table extends Auction {        private Integer rowNum;    public Table(String name, Integer rowNum) {        super(name);        this.rowNum = rowNum;    }    public Integer getRowNum() {        return rowNum;    }    public void setRowNum(Integer rowNum) {        this.rowNum = rowNum;    }        public String toString() {        return super.toString() + ", rowNum :" + rowNum;    }    }class Service extends Auction {    private String method;        public Service(String name, String method) {        super(name);        this.method = method;    }    public String getMethod() {        return method;    }    public void setMethod(String method) {        this.method = method;    }        public String toString() {        return super.toString() + ", method :" + method;    }    }

实验:泛型最基本使用

  现在为了演示泛型的使用,还是以商品为例。数据表本身只是Hbase中的一张表,而服务是运行于Hadoop Yarn之上的一个数据服务,比如说是Strom、Spark或者Oozie。无论是数据表还是服务,它本身并不是商品,要成为商品,必须有个装饰器将它包装为商品,现在我们用泛型实现一个简单的装饰器,见代码清单2所示。

代码清单2

class Decorator
{ /** * * 描 述:Exp1使用
* 作 者:jiaan.gja
* 历 史: (版本) 作者 时间 注释
* @param itemList */ public void doDecorate(List
itemList) { for(int i = 0; i < itemList.size(); i++) { System.out.println(itemList.get(i)); } } /** * * 描 述:Exp1使用
* 作 者:jiaan.gja
* 历 史: (版本) 作者 时间 注释
* @param itemList * @param t */ public void addDecorate(List
itemList, T t) { itemList.add(t); } }

  现在我们可以使用Decorator给List添加或者打印任何类型了,如代码清单3所示。

代码清单3

/** *  * 类 名: Exp1
* 描 述: 泛型最基本使用
* 作 者: jiaan.gja
* 创 建: 2015年8月13日
* * 历 史: (版本) 作者 时间 注释 */class Exp1 { public static void main(String[] args) { Decorator
decoratorA = new Decorator
(); List
listA = new ArrayList
(); Auction auctionOne = new Auction("auctionOne"); Auction auctionTwo = new Auction("auctionTwo"); decoratorA.addDecorate(listA, auctionOne); decoratorA.addDecorate(listA, auctionTwo); decoratorA.doDecorate(listA); Decorator
decoratorB = new Decorator
(); List
listB = new ArrayList
decoratorC = new Decorator
(); List
listC = new ArrayList
(); Service serviceOne = new Service("serviceOne", "methodOne"); Service serviceTwo = new Service("serviceTwo", "methodTwo"); decoratorC.addDecorate(listC, serviceOne); decoratorC.addDecorate(listC, serviceTwo); decoratorC.doDecorate(listC); }}
(); Table tableOne = new Table("tableOne", 10); Table tableTwo = new Table("tableTwo", 20); decoratorB.addDecorate(listB, tableOne); decoratorB.addDecorate(listB, tableTwo); decoratorB.doDecorate(listB); Decorator

遗留问题

  如果想要Auction用于Decorator,必须要声明Decorator<Auction>;Service用于Decorator,也必须声明Decorator<Service>。由于Table是Auction的子类型,我们自然想将Table也能用于Decorator<Auction>,就像下面这样:

decoratorA.doDecorate(listB);

listB的泛型Table的确是decoratorA的泛型Auction的子类型,但是编译器会报错,说明不允许这种语法。

如何解决这个问题?请看下一篇

转载于:https://www.cnblogs.com/jiaan-geng/p/4846134.html

你可能感兴趣的文章
centos 7 redis-4.0.11 主从
查看>>
博弈论 从懵逼到入门 详解
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
慵懒中长大的人,只会挨生活留下的耳光
查看>>
"远程桌面连接--“发生身份验证错误。要求的函数不受支持
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
VALSE2019总结(4)-主题报告
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>
Solaris11修改主机名
查看>>
latex for wordpress(一)
查看>>
如何在maven工程中加载oracle驱动
查看>>
Flask 系列之 SQLAlchemy
查看>>
aboutMe
查看>>
【Debug】IAR在线调试时报错,Warning: Stack pointer is setup to incorrect alignmentStack,芯片使用STM32F103ZET6...
查看>>
一句话说清分布式锁,进程锁,线程锁
查看>>
python常用函数
查看>>
FastDFS使用
查看>>