Explicit vs implicit call of toString. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:17:22Z http://stackoverflow.com/feeds/question/328661 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328661/explicit-vs-implicit-call-of-tostring 4 Explicit vs implicit call of toString. Burkhard 2008-11-30T09:23:29Z 2008-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#328667 1 Answer by cletus for Explicit vs implicit call of toString. cletus 2008-11-30T09:25:53Z 2008-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#328668 10 Answer by Dustin for Explicit vs implicit call of toString. Dustin 2008-11-30T09:26:18Z 2008-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#328675 2 Answer by Draemon for Explicit vs implicit call of toString. Draemon 2008-11-30T09:41:28Z 2008-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#328741 0 Answer by Pål GD for Explicit vs implicit call of toString. Pål GD 2008-11-30T11:04:08Z 2008-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>