I know java is a very sensitive language. But accidentally I wrote a java statement with two semicolons. The java compiler does not show any error and it runs. I wrote the following line:
........
System.out.println("Length after delete the text is "+name.length());;
..........
For learning purpose I tried adding different characters after the semicolon, and the java compiler has shown the compile time error as Syntax error on token ")", delete this token.
I wrote the following statement
System.out.println("Length after delete the text is "+name.length());)
I do not know the reason; how is it possible? Why does java treat the semicolon and other characters as different? Please help me.