What is the equivalent of C# CollectionBase in Java?
From stackoverflow
-
AbstractCollection
is probably the closest; but sinceCollectionBase
implementsIList
, you might wantAbstractList
instead.
0 comments:
Post a Comment