i have 2 objects created as
final VideoObj v1 = new VideoObj("A", 2000, "B");
final VideoObj v1copy = new VideoObj("A", 2000, "B");
i an using a hash map as below
private final Map<Video, Record> _data = _data = new HashMap<Video, Record>();
is v1 is added to Video record is incermented by 1 whihc is in the Record class,
how does the hash map know this is the same key, because i added v1 1st and the record was 1 then i added v1copy then the record is 2. why is it becoming 2 instead of added a new one for v1copy
please help me with this thanks
hashCodeandequalsand so sincev1andv1copyare composed of identical data they are treated as equal keys. If you don't want this use anIdentityHashMapinstead of aHashMap. – Mark Peters Feb 4 '12 at 19:25VideoorVideoObj? Why is there_data = _data = ...in that last line? It's important to be precise. – Jesper Feb 4 '12 at 20:26