Code inside comment executed after Unicode sequence
我有这个代码:
1 2 3 4 5 6 7 8 9
| class ABCD
{
public static void main (String[] args )
{
int i = 3;
// \u000A i++;
System. out. println(i );
}
} |
Ouput:
4
这是否意味着Java也执行评论?
- 由u000a表示的换行符终止行注释。请参阅stackoverflow.com/questions/4448180/…
i++位于单行注释的另一行。unicode码位'u000a'是换行符。