new Float(1.2f) creates a new Float object every time, consuming memory.
If you use factory method Float.valueOf(1.2f) JVM will may reuse existing Float object instances for the same value. It creates 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)Float.valueOf(1.2f) instead of new Float(1.2f).
This will mean
Also note that you can compare primitives and objects work differently with equals operators operator ==.
float x1 = 1.2f;
float x2 = 1.2f;
x1 == x2 // true
Float f1 = new Float(1.2f);
Float f2 = new Float(1.2f);
f1 == f2 // false
Float g1 = Float.valueOf(1.2f);
Float g2 = Float.valueOf(1.2f);
g1 == g2 // true
