I have created a hash map in which each entry corresponds to 3 values Key object values ( which are two in number)
I have created a class ,whose object i create and store the results in a hash map This is my code below in which i compare my incoming data with the previous values in the hash map.If the same data comes then i just increment the counter of that data. I have taken the print statements in the the for loop . though the two strings match but still my code never comes in the if loop for increment the counter.Why?
for(i=1;i<=hMap.size();i++)
{
String skey = Integer.toString(i);
if(hMap.get(skey).olddata==comingdata)
{
hMap.get(skey).counter= hMap.get(skey).counter+1;
}
}
==. – Brian Roach Feb 4 at 14:30Stringis anObject. – Brian Roach Feb 4 at 14:35