Originally posted by fethi makhlouf:
char c2 = '\u00DD';
char c3 = '\u000D';
char c4 = '\u000A';
}
}
can somone tell me why c1 and c2 are valid values wheras c3 and c4 are not!
Firstly,
/u000d represents carriage return
/u000a represents new line
Now the first thing that the compiler does is convert the unicode into the respective characters. This happens, I guess, even before the actual compilation process starts.
So the c3 and c4 lines when passed to the compiler would look like this
So ur code above is equivalent to the one below:
and hence the compile error.