hi I want to create a HashMap (java) that stores Expression, a little object i've created. How do I choose what type of key to use? What's the difference for me between integer and String? I guess i just don't fully understand the idea behind HashMap so i'm not sure what keys to use. Thanks!
|
Java
The specific requirements, taken from Java API doc are the following:
If you don't provide any kind of specific implementation, then the memory reference of the object is used as the hashcode. This is usually good in most situations but if you have for example:
(I don't actually know what you need to place inside your hashmap so I'm just guessing) Then, since they are two different object although with same parameters, they will have different hashcodes. This could be or not be a problem for your specific situation. In case it isn't just use the hasmap without caring about these details, if it is you will need to provide a better way to compute the hashcode and equality of your You could do it in a recursive way (by computing the hashcode as a result of the hashcodes of children) or in a naive way (maybe computing the hashcode over a Finally, if you are planning to use just simple types as keys (like you said integers or strings) just don't worry, there's no difference. In both cases two different items will have the same hashcode. Some examples:
Mind that the example with strings is not true in general, like I explained you before, it is just because the hashcode method of strings computes the value according to the content of the string itself. |
|||||||||||
|
|
Keys and their associated values are both objects. When you get something from a HashMap, you have to cast it to the actual type of object it represents (we can do this because all objects in Java inherit the Object class). So, if your keys are strings and your values are Integers, you would do something like:
However, you can use Java generics to tell the compiler that you're only going to be using Strings and Integers:
See http://download.oracle.com/javase/1.4.2/docs/api/java/util/HashMap.html for more details on HashMap. |
|||
|
|
|
If you do not want to look up the expressions, why do you want them to store in a map? But if you want to, then the key is that item you use for lookup. |
|||
|
|
|
The key is what you use to identify objects. You might have a situation where you want to identify numbers by their name.
Then later you can get them out by doing
Or you might have a need to go the other way. If you know you're going to have integer values, and want the names, you can map integers to strings
And get it out
|
|||
|
|