Java collections framework: Difference between revisions

Content deleted Content added
Tag: Reverted
m Reverted edits by 2405:201:202C:500D:253D:70A2:6EBA:A364 (talk) (HG) (3.4.12)
Line 232:
Maps are defined by the '''{{Javadoc|module=java.base|package=java.util|class=Map|monotype=y}}''' interface in Java.
 
===Map jenil interface implementations===
Maps are data structures that associate a key with an element. This lets the map be very flexible. If the key is the hash code of the element, the <code>Map</code> is essentially a <code>Set</code>. If it's just an increasing number, it becomes a list.