Explicit vs implicit call of toString. - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T06:17:22Zhttp://stackoverflow.com/feeds/question/328661http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring4Explicit vs implicit call of toString.Burkhard2008-11-30T09:23:29Z2008-11-30T11:04:08Z
<p>Hello, </p>
<p>I used to use the implicit call of toString when wanting some debug info about an object, because in case of the object is null it does not throw an Exception.</p>
<p>For instance: </p>
<pre><code>System.out.println("obj: "+obj);
</code></pre>
<p>instead of:</p>
<pre><code>System.out.println("obj: "+obj.toString());
</code></pre>
<p>Is there any difference apart from the null case?<br />
Can the latter case work, when the former does not?</p>
<p>Edit:<br />
What exactly is done, in case of the implicit call?</p>
http://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring/328667#3286671Answer by cletus for Explicit vs implicit call of toString.cletus2008-11-30T09:25:53Z2008-11-30T09:25:53Z<p>No difference except, like you say, the null safety. Always prefer the former to the latter.</p>
http://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring/328668#32866810Answer by Dustin for Explicit vs implicit call of toString.Dustin2008-11-30T09:26:18Z2008-11-30T09:37:15Z<p>There's little difference. Use the one that's shorter and works more often.</p>
<p>If you actually want to get the string value of an object for other reasons, and want it to be null friendly, do this:</p>
<pre><code>String s = String.valueOf(obj);
</code></pre>
<p><strong>Edit</strong>: The question was extended, so I'll extend my answer.</p>
<p>In both cases, they compile to something like the following:</p>
<pre><code>System.out.println(new StringBuilder().append("obj: ").append(obj).toString());
</code></pre>
<p>When your <code>toString()</code> is implicit, you'll see that in the second append.</p>
<p>If you look at the source code to java, you'll see that <code>StringBuilder.append(Object)</code> looks like this:</p>
<pre><code>public StringBuilder append(Object obj) {
return append(String.valueOf(obj));
}
</code></pre>
<p>where <code>String.valueOf</code> looks like this:</p>
<pre><code>public static String valueOf(Object obj) {
return (obj == null) ? "null" : obj.toString();
}
</code></pre>
<p>Now, if you <code>toString()</code> yourself, you bypass a null check and a stack frame and go straight to this in <code>StringBuilder</code>:</p>
<pre><code>public StringBuilder append(String str) {
super.append(str);
return this;
}
</code></pre>
<p>So...very similar things happens in both cases. One just does a little more work.</p>
http://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring/328675#3286752Answer by Draemon for Explicit vs implicit call of toString.Draemon2008-11-30T09:41:28Z2008-11-30T09:41:28Z<p>As others have said - use the "" + obj method.</p>
<p>According to http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.18.1]">The Java Language Spec:</p>
<ul>
<li>If the term is null, use "null"</li>
<li>Primitive types are converted using the boxed-type constructor new Boolean(X) or whatever</li>
<li>toString() is invoked (or equivalent)</li>
<li>if the <em>result</em> of toString() is null, use "null"</li>
<li>Concatenate the strings.</li>
</ul>
http://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring/328741#3287410Answer by Pål GD for Explicit vs implicit call of toString.Pål GD2008-11-30T11:04:08Z2008-11-30T11:04:08Z<p>Actually, if your invariant says the object should never be null, it doesn't matter. So it depends on whether or not you accept obj to be null.</p>