I have the following code:
System.out.println("" + null);
And the output is null.
How does java do the trick in string concatenation?
|
|
|
Because Java converts the expression In actual fact I think it probably uses
resolves to the more efficient
This uses the |
|||||||||
|
|
Java uses It is not hard to imagine its implementation.
|
|||
|
|
|
The code
and StringBuffer replaces null with the string "null". So the result is the string "null". |
|||
|