ajayNCSTian
Right off the assembly line
Hello Everybody
Why following Commented Statement JAVAC cannot compile ??
public class Unicode
{
public static void main(String[] args)
{
//char a = '\u007';
/*char b = '\u007'*/;
}
}
It is understandable that Unicode escape should follow 4 digits after it
But why such a rule in commented statement ?
What is the reason behind this
Why following Commented Statement JAVAC cannot compile ??
public class Unicode
{
public static void main(String[] args)
{
//char a = '\u007';
/*char b = '\u007'*/;
}
}
It is understandable that Unicode escape should follow 4 digits after it
But why such a rule in commented statement ?
What is the reason behind this