I have this object:
Public Cactus{
Public Double key;
Public String value;
}
I have about ~100 Cactus
, which all have a unique key, and a value that has some duplicates.
I will however have to retrieve the value for a key about ~2000 times.
My Key
values varies between -10 and 280.
I want this process to be as quick as possible. What would be the best approach for this? I was thinking using a HashTable
, although I always used one with Integer
and not Double
, and for some reason I am worried that it's not good practice to use Double
as Key
.
Given my scenario, which collection would be the best to use?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…