I want a Set which only holds one data type and doesn't permit any of its superclasses or subclasses from being added to the Set.
|
feedback
|
|
you can use if you want a guarantuee that only classes of a type MyClass are added you could just extend HashSet and override the Update: added a working example that you can run as PoC.
running this example yields:
| |||||||||||
feedback
|
|
Okay, I think I misunderstood the point completely. I would probably use composition rather than inheritance, delegating to a
Note that that means you'll need the actual class at execution time, so you'd need to construct the set with something like:
| |||
|
feedback
|
|
In a very specialized case, where you know the type of the class that you want to add, you could you extend an existing Set implementation and override the | |||||
feedback
|