是否可以以只能保存某种类型的对象的方式来实现AbstractList?

最佳答案

当然。

class FooList extends AbstractList<Foo> {
  ...
}

10-06 04:49