vote up 2 vote down star
  1. float ff = 1.2f;
  2. Float fo = new Float(1.2f);
  3. double fg = 3.2d;
  4. Double fh = new Double(2.1d);

Can I use '=' between the (1) and (3) or between the (2) and (4)??

flag

59% accept rate
If I add these two statements==> 3) double fg = 3.2d; 4) Double fh = new Double(2.1d); Can I use '=' between the ((1)and(3)) or between the ((2)and(4))?? – Johanna Jun 17 at 18:53
@Neda, you will see a "possible loss of precision" message if you try "ff = fg" and "incompatible types" if you try "fo = fh". – Bob Cross Jun 17 at 18:57
@Neda, also, "fg = ff" will work fine (the float fits in a double) but "fh = fo" will still give you an "incompatible types". – Bob Cross Jun 17 at 18:58
Dear Bob, would you mind explaining more about this"fh=fo",because fo is Float and fh is Double!!!! Can I use '=='for the(2)and (4)??? – Johanna Jun 17 at 19:07
@Neda, "Double" and "Float" are very different things. The fact that they use the same English words as "double" and "float" is irrelevant. What you COULD do is say Double fh = fo.doubleValue() and get a Double with a value that is very similar to the Float's value. – Bob Cross Jun 17 at 19:16

7 Answers

vote up 18 vote down check

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".
link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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 ==.

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
link|flag
@Juha, this doesn't appear to be a firm contract. When I look at the source for Float.java, I see public static Float valueOf(float f) { return new Float(f); } I don't think you can count on the valueOf() working in all cases (unless you can produce a JVM specification to the contrary). – Bob Cross Jun 17 at 19:21
Dear, I have read that '==' can be used for equality of references,but I think x1 and x2 haven't got any references and for f1 and f2 I think it can be true because they are object types!!!!! – Johanna Jun 17 at 19:32
1  
@Bob Cross: At least when autoboxing, Floats and Doubles are not required to be cached. JLS §5.1.7 (java.sun.com/docs/books/… ) says: "If the value p being boxed is true, false, a byte, a char in the range \u0000 to \u007f, or an int or short number between -128 and 127, then let r1 and r2 be the results of any two boxing conversions of p. It is always the case that r1 == r2." Since even Float f1 = 1.2f; Float f2 = 1.2f; System.out.println(f1 == f2); produces false, I find it rather unlikely that there is a factory method which caches. – mmyers Jun 17 at 19:36
@mmyers, there's at least one. Boolean.valueOf(true) will return Boolean.TRUE. It uses a ternary operator. Admittedly, it's not very interesting when you could just use Boolean.TRUE itself.... The idea of a Double.valueOf() that caches would be interesting but I would never count on the values returned being equal. – Bob Cross Jun 17 at 19:45
@Bob, I didn't actually check the code, just read the javadoc. Edited the answer. – Juha Syrjälä Jun 17 at 19:56
show 2 more comments
vote up 1 vote down

Yeah primitive types can't be NULL, Objects can. Also the Float object has a bunch of useful utility functions attached to it.

link|flag
vote up 7 vote down

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

link|flag
Understanding autoboxing is key to understanding this. Java will autoconvert from Float to float to double to Double if you ask it the right way. – Alex Feinman Jun 17 at 19:37
vote up 3 vote down

Yes. The first declares a variable of the primitive type float and initializes it to 1.2.

While the second declares a variable of the reference type Float, creates an object of type Float and then assigns a reference to the variable.

link|flag
vote up 7 vote down

Yes, 2 creates an Object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.