| Author |
put float into hashMap
|
Marko Debac
Ranch Hand
Joined: Aug 21, 2006
Posts: 121
|
|
Hi, what I need to do that I can put float value into hashMap, because hash map takes only integer or string value there is no
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
Maps can take any Object, for both key and value. So: is perfectly valid.
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
Lorenz Baylon
Ranch Hand
Joined: Jan 04, 2006
Posts: 99
|
|
Hi Marko, Paul is right, however in Java 5, with autoboxing feature, a HashMap can take say a primitive key and a primitive value(e.g HashMap<int,float> , JVM in turn does the autoboxing behind the scenes for you. Goodluck  [ June 04, 2007: Message edited by: lhorenz baylon ]
|
I just cant look, its killing me.
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12952
|
|
Originally posted by lhorenz baylon: Hi Marko, ...(e.g HashMap<int,float>  , JVM in turn does the autoboxing behind the scenes for you.
Note, you can't write HashMap<int, float>, that will result in a compiler error. The things between the angle brackets cannot be primitive types. Hoewever, you can make a HashMap<Integer, Float> and Java 5 autoboxing:
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Lorenz Baylon
Ranch Hand
Joined: Jan 04, 2006
Posts: 99
|
|
oh yes, my bad, sorry and thanks
|
 |
 |
|
|
subject: put float into hashMap
|
|
|