Saw the code snippet like
Set instances = new HashSet();
I am wondering if Hashset is a special kind of set. A
**
** It is an interface which is a subtype of Collection interface, just like LIST and QUEUE.
Set has below 3 subclasses, it is used to store multiple objects without duplicates.
**
**
Can use one NULL value(as Duplicate is not allowed), data is stored randomly as it does not maintain sequence.