Reputation: 71
According to "Core Java Vol. I" by Cay Horstmann:
So, the below code should not work:
class Test
{
public static void main(String[] arg2)
{
// \u00A0 is a new line
char alpha = 'a';
System.out.println("abc" + alpha);
}
}
But it works. Why?
Upvotes: 1
Views: 77