Pls look at the following code class D { public static void main (String[] args) { char a=\u0030; char b=\u0031; char c=\u0032; char y=\u0039; /* the values from \u0030 to \u0039 are working fine when assigned char variable without the necessary '' ( i mean '\u0031').However ,usage of \u0001 to \u0029 and \u0040 and greater give a compile time error. what is the reason? shouldnt the assignment be illegal??? */ System.out.println(""+a+b+c+y); } } Pls clarify !
Ernest Friedman-Hill
author and iconoclast
Marshal
Substitution of unnicode characters happens before the compiler sees the code, so when your code is compiled, it looks like this:
Because 0x30... 0x39 are the ASCII for the ten decimal digits. But if you used (for example) \u0020, that's the ASCII space character, and you can see how you'd end up with a statement like
which obviously won't compile! Anyway, the effect of "char a = \u0030;" and "char a = '0';" are quite different; in the first case, you get a char whose numeric value is zero, while in the second case, you get one whose numeric value is 48 (30 hex) but whose character value is the digit 0. Understand? In the general case, you want to use the quotes!