I want to store the IDs of items and their corresponding co-ordinates. For this, I'm using a TreeMap where Coordinates is a class containing int x and int y. Now, for inserting data into the map can I write:
treeMapObject.put(5,new BasicRow(30,90));
Or do I have to write:
treeMapObject.put(new Integer(5),new BasicRow(30,90));
I guess only the second one is correct because Maps deal with objects. But now the question is, say I have the following piece of code:
treeMapObject.put(new Integer(5),new BasicRow(30,90));
treeMapObject.put(new Integer(5),new BasicRow(45,85));
In such a case what will happen?