泛型(Generic)
Posted zawjdbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了泛型(Generic)相关的知识,希望对你有一定的参考价值。
List<String> c = new ArrayList<String>(); 只能存String
Iterator<String> d = Connection.iterator(); iterator指定返回String类型
class A implements Comparable<A> 指定比较类型
定义集合时,同时定义集合的类型。
增强程序的可读性和稳定性。
以上是关于泛型(Generic)的主要内容,如果未能解决你的问题,请参考以下文章