关于java:Unicode序列后执行注释的代码

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也执行评论?


i++位于单行注释的另一行。unicode码位'u000a'是换行符。