Equivalent container to java.util.HashMap but without value feild -
i need java container similar hashmap stores objects (instead of key-value pairs) indexed hash code. such container called? there java implementation of it?
then you're looking hashset
this class implements set interface, backed hash table
note hashset doesn't allow duplicates.
Comments
Post a Comment