Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Mappings and Primitives

I want to create a mapping that takes a String as the key and a primitive as the value. I was looking at the Java docs and did not see that Primitive was a class type, or that they shared some kind of wrapping class.

How can I constrain the value to be a primitive?

Map<String, Primitive> map = new HashMap<String, Primitive>();

like image 669
James Andino Avatar asked Dec 09 '10 15:12

James Andino


3 Answers

Java Autoboxing allows to create maps on Long, Integer, Double and then operate them using primitive values. For example:

java.util.HashMap<String, Integer> map = new java.util.HashMap<String, Integer>();
map.put("one", 1); // 1 is an integer, not an instance of Integer

If you want to store in one map different primitive types, you can to it by making a Map<String, Number>. Allows to store values of BigDecimal, BigInteger, Byte, Double, Float, Integer, Long, Short (and AtomicLong, AtomicInteger).

Here is an example:

Map<String, Number> map = new HashMap<String, Number>();

map.put("one", 1);
map.put("two", 2.0);
map.put("three", 1L);

for(String k:map.keySet()) {
  Number v = map.get(k);
  System.err.println(v + " is instance of " + v.getClass().getName() + ": " + v);
}
like image 177
khachik Avatar answered Oct 10 '22 19:10

khachik


Google for "Java Primitive Maps" and you will find some specialised types which avoid the need for autoboxing. An example of this is: https://labs.carrotsearch.com/hppc.html

However, in general you should do fine with autoboxing as mentioned in other answers.

like image 43
mchr Avatar answered Oct 10 '22 19:10

mchr


You can do the following:

Map<String, Integer> map = new HashMap<String, Integer>()

Then operations like:

map.put("One", 1);

will work. The primitive 1 will get auto-boxed into an Integer. Likewise:

int i = map.get("One");

will also work because the Integer will get auto-unboxed into an int.

Check out some documentation on autoboxing and autounboxing.

like image 3
jjnguy Avatar answered Oct 10 '22 21:10

jjnguy