比如
Iterable<T> 和 Iterator<E>
这里的T和E分别是Type和Element的首字母。
E一般用来表示集合类型中的元素的类型,例如List接口的定义,public interface List <E> extends Collection <E>。
Iterable<T> 和 Iterator<E>
这里的T和E分别是Type和Element的首字母。
E一般用来表示集合类型中的元素的类型,例如List接口的定义,public interface List <E> extends Collection <E>。