posted 24 years ago
Hi, I was thinking more of the physical implementation of a class that overrides the add/remove methods in AbstractCollection. For instance, a queue that goes like a, b, d, e, f, and you wish to "add" a c so that as a whole the queue becomes a, b, c, d, e, f. How do you access the inner container within AbstractCollection to add/remove?
Thanks!