String conversion in Java is performed implicitly and only in one case: when string and non-string are concatenated.
For example, the following will be allowed:
s = "" + (46 >> 2); // empty string + number
Number will be implicitly converted to string in this case.
Login in to like
Login in to comment