<div class="para" style="font-size:14px; word-wrap:break-word; color:rgb(51,51,51); margin-bottom:15px; text-indent:28px; line-height:24px; zoom:1; font-family:arial,宋体,sans-serif">
泛型是Java SE 1.5的新特性,泛型的本质是参数化类型,也就是说所操作的数据类型被指定为一个参数。这种参数类型可以用在类、接口和方法的创建中,分别称为<a target="_blank" href="http://baike.baidu.com/view/2104244.htm" rel="nofollow" style="color:rgb(19,110,194); text-decoration:none">泛型类、泛型接口、泛型方法。 <a target="_blank" href="http://baike.baidu.com/view/229611.htm" rel="nofollow" style="color:rgb(19,194); text-decoration:none">Java语言引入泛型的好处是安全简单。