我有以下层次结构:
abstract class customType<E extends Number>
class customInteger extends customType<Integer>
class customFloat extends customType<Float>
声明一个同时接受 customInteger 和 customFloat 的 LinkedList
List<customType<Number>> items = new LinkedList<customType<Number>>();
这种方法有效吗?