- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下一行来自JLS §3.3 :
If an eligible \ is followed by u , or more than one u , and the last u is not followedby four hexadecimal digits, then a compile-time error occurs.
所以这意味着下面几行的结果是一样的:
System.out.println('\u0065'); // prints "e"
System.out.println('\uu0065'); // prints "e"
System.out.println('\uuu0065'); // prints "e"
在 \uXXXX
中使用单个 u
与在 \uuXXXX
中使用 uu
本质上是一样的。我的问题是,为什么我们需要这种设计?
最佳答案
原因稍后在引用的部分中说明:
The Java programming language specifies a standard way of transforming a program written in Unicode into ASCII that changes a program into a form that can be processed by ASCII-based tools. The transformation involves converting any Unicode escapes in the source text of the program to ASCII by adding an extra u - for example, \uxxxx becomes \uuxxxx - while simultaneously converting non-ASCII characters in the source text to Unicode escapes containing a single u each.
这意味着它使到 ASCII 的转换完全可逆,因为您知道哪些转义序列最初在代码中,哪些是通过转换添加的。
关于java -\uXXXX、\uuXXXX 和\uuuXXXX 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48321664/
下一行来自JLS §3.3 : If an eligible \ is followed by u , or more than one u , and the last u is not follo
我是一名优秀的程序员,十分优秀!