Compiler doesn't complain when I ended a line with two semicolons. Why?

后端 未结 7 2175
不思量自难忘°
不思量自难忘° 2021-01-19 01:29

I thought bad thing would happen when I ended a line like this. But compiler didn\'t even complain. Does anybody have an idea, why this is legal in java.

displ

7条回答
  •  一生所求
    2021-01-19 01:58

    It's an empty statement, it's the same as if you did this:

    int x = 0;
    ;
    

    No problems there!

提交回复
热议问题