All,
I am working on an existing system where the developer had defined a lot of HashMaps with following definition:
HashMap<String, Comparable> x = new HashMap<String, Comparable>();
Now, there is absolutely no need of comparison for the value part of the hashmap since it simply represents only a single piece of information. The developer used Comparable since the only expected values were String and int types(converted to Integer object) and the developer assumed the best way to store both data types is using Comparable interface.
So, I went ahead and changed the code since there was no point of comparison here by defining the HashMap as:
HashMap<String, Object> y = new HashMap<String, Object>();
I had timed the code execution for before and after change. I am a bit surprised as to why the code is taking more time to execute after my changes were deployed (though not a performance bottleneck currently).
Can anyone please help me understand the change in behavior due to my code updates?
instanceof Comparabledue it is always true. I would prefer the smaller interface, which is Comparable in your case. – Stephan Oct 31 '11 at 23:00