Yes.
- Makes a plain old data type (AKA a primitive type) called "float."
- Makes a Java Object called Float that holds that value that happens to be identical to (1)
Responding to the edit questions:
You will see
- "possible loss of precision" message if you try
ff = fg. - "incompatible types" if you try
fo = fh. fg = ffwill work fine (the float fits in a double).fh = fowill still give you an "incompatible types".
