What is the equivalent of C# CollectionBase in Java?
+6
A:
AbstractCollection
is probably the closest; but since CollectionBase
implements IList
, you might want AbstractList
instead.
erickson
2009-06-25 18:14:42