I have two numbers and I want to use them together as a key in a Map
. Currently, I'm concatenating their string representations. For example, suppose the key numbers are 4 and 12. I use:
String key = 4 + "," + 12;
The map is declared as Map<String, Object>
.
I think this is so bad! I like to use something other than a String
as the key! I want the fastest way to create these keys.
Who has a good idea?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…