Why does the following work? I would expect a NullPointerException to be thrown.
String s = null;
s = s + "hello";
System.out.println(s); // prints "nullhello"
|
Why does the following work? I would expect a
|
|||
Why must it work?The JLS, Section 15.18.1.1 requires this operation to succeed without failure:
How does it work?Let's look at the bytecode! The compiler takes your code:
and compiles it into bytecode as if you had instead written this:
(You can do so yourself by using The append methods of If you were to have done
where in this case the append method takes the null and then delegates it to Note: String concatenation is actually one of the rare places where the compiler gets to decide which optimization(s) to perform. As such, the "exact equivalent" code may differ from compiler to compiler. This optimization is allowed by JLS, Section 15.18.1.2:
The compiler I used to determine the "equivalent code" above was Eclipse's compiler, ecj. |
|||||||
|
|
The second line is transformed to the following code:
The append methods can handle |
|||
|
|
|
See section 5.4 and 15.18 of the Java Language specification:
and
|
|||||
|
|
This is behavior specified in the Java API's
|
|||
|
|
|
You are not using the "null" and therefore you don't get the exception. If you want the NullPointer, just do
And I think what you want to do is:
|
|||
|
|
+ operatoris overloaded upon the String type (see Jonathans answer, for instance). There are no method calls in thes + "hello"line and thus no chance for an NPE as there is no object receiver (and 'code transformations' must honor this contract). Happy coding. – user166390 Nov 23 '10 at 21:46