float ff = 1.2f;Float fo = new Float(1.2f);double fg = 3.2d;Double fh = new Double(2.1d);
Can I use '=' between the (1) and (3) or between the (2) and (4)??
|
|
|||||||||||
|
|
|
Yes.
Responding to the edit questions: You will see
|
|||
|
|
|
|
In real applications I suggest you not use float or Float, its not very accurate and almost never the right solution, use double or Double instead. |
||
|
|
|
|
new Float(1.2f) creates a new Float object every time, consuming memory. If you use factory method Float.valueOf(1.2f) JVM may reuse existing Float object instances for the same value. It could create a new object instance only if there isn't already a Float instance with the same value. Usually you'll want to use Float.valueOf(1.2f) instead of new Float(1.2f). Also note that primitives and objects work differently with equals operator ==.
|
||||||||||||
|
|
|
Yeah primitive types can't be NULL, Objects can. Also the Float object has a bunch of useful utility functions attached to it. |
||
|
|
|
|
Yes, first one is a primitive type and second is a boxing class which wraps capabilities of primitive float type, we need second for example for use in the collections. Before you have had to deal a lot with type conversion (I think until Java 1.5) now the existence of wrappers classes takes those capabilities. More information. here |
|||
|
|
|
Yes. The first declares a variable of the primitive type While the second declares a variable of the reference type |
||
|
|
|
|
Yes, 2 creates an Object. |
||
|
|