Is there any difference between these two statements? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T11:32:38Zhttp://stackoverflow.com/feeds/question/1008850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements2Is there any difference between these two statements?Johanna2009-06-17T18:39:27Z2009-06-17T20:22:41Z
<ol>
<li><code>float ff = 1.2f;</code></li>
<li><code>Float fo = new Float(1.2f);</code></li>
<li><code>double fg = 3.2d;</code> </li>
<li><code>Double fh = new Double(2.1d);</code> </li>
</ol>
<p>Can I use '=' between the (1) and (3) or between the (2) and (4)??</p>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008860#10088607Answer by Telos for Is there any difference between these two statements?Telos2009-06-17T18:40:29Z2009-06-17T18:40:29Z<p>Yes, 2 creates an Object.</p>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008864#10088643Answer by Aaron Maenpaa for Is there any difference between these two statements?Aaron Maenpaa2009-06-17T18:40:59Z2009-06-17T18:40:59Z<p>Yes. The first declares a variable of the primitive type <code>float</code> and initializes it to 1.2.</p>
<p>While the second declares a variable of the reference type <code>Float</code>, creates an object of type <code>Float</code> and then assigns a reference to the variable.</p>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008866#100886618Answer by Bob Cross for Is there any difference between these two statements?Bob Cross2009-06-17T18:41:07Z2009-06-17T19:00:31Z<p>Yes.</p>
<ol>
<li>Makes a plain old data type (AKA a primitive type) called "float."</li>
<li>Makes a Java Object called Float that holds that value that happens to be identical to (1)</li>
</ol>
<p>Responding to the edit questions:</p>
<p>You will see </p>
<ol>
<li>"possible loss of precision" message if you try <code>ff = fg</code>.</li>
<li>"incompatible types" if you try <code>fo = fh</code>.</li>
<li><code>fg = ff</code> will work fine (the float fits in a double).</li>
<li><code>fh = fo</code> will still give you an "incompatible types".</li>
</ol>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008868#10088687Answer by Artem Barger for Is there any difference between these two statements?Artem Barger2009-06-17T18:41:26Z2009-06-17T18:47:09Z<p>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. <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/autoboxing.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008870#10088701Answer by Martin Dale Lyness for Is there any difference between these two statements?Martin Dale Lyness2009-06-17T18:41:49Z2009-06-17T18:41:49Z<p>Yeah primitive types can't be NULL, Objects can. Also the Float object has a bunch of useful utility functions attached to it.</p>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1008944#10089442Answer by Juha Syrjälä for Is there any difference between these two statements?Juha Syrjälä2009-06-17T18:58:01Z2009-06-17T19:51:25Z<p>new Float(1.2f) creates a <em>new</em> Float object every time, consuming memory. </p>
<p>If you use factory method <a href="http://java.sun.com/javase/6/docs/api/java/lang/Long.html#valueOf(long)" rel="nofollow">Float.valueOf(1.2f)</a> 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.</p>
<p>Usually you'll want to use Float.valueOf(1.2f) instead of new Float(1.2f).</p>
<p>Also note that primitives and objects work differently with equals operator <strong>==</strong>.</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/1008850/is-there-any-difference-between-these-two-statements/1009334#10093340Answer by Peter Lawrey for Is there any difference between these two statements?Peter Lawrey2009-06-17T20:22:41Z2009-06-17T20:22:41Z<p>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.</p>