show/hide this revision's text 6 Responding to the edit

Yes.

  1. Makes a plain old data type (AKA a primitive type) called "float."
  2. 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

  1. "possible loss of precision" message if you try ff = fg.
  2. "incompatible types" if you try fo = fh.
  3. fg = ff will work fine (the float fits in a double).
  4. fh = fo will still give you an "incompatible types".
show/hide this revision's text 5 added 38 characters in body; edited body

Yes.

  1. Makes a primitive plain old data type .(AKA a primitive type) called "float."
  2. Makes a Java Object called Float that holds that value that happens to be identical to (1)
show/hide this revision's text 4 deleted 10 characters in body

Yes.

  1. Makes a plain old primitive data type.
  2. Makes a Java Object called Float that holds that value that happens to be identical to the POD type.(1)
show/hide this revision's text 3 Rollback to Revision 1
show/hide this revision's text 2 edited body
show/hide this revision's text 1