我想知道断言是如何实现的。我发现它javac
使用了一个静态字段$assertionsDisabled
。我很好奇如果$assertionsDisabled
已经使用会发生什么。
public class Test {
static final boolean $assertionsDisabled = Math.random() < .5;
public static void main(String[] args) {
assert false;
}
}
我希望javac
使用另一个名称,就像其他自动名称生成的情况一样。然而, ...
C:\Users\...\src>javac -J-showversion Test.java
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b18)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
Test.java:1: error: the symbol $assertionsDisabled conflicts with a compiler-syn
thesized symbol in Test
public class Test {
^
Test.java:2: error: the symbol $assertionsDisabled conflicts with a compiler-syn
thesized symbol in Test
static final boolean $assertionsDisabled = Math.random() < .5;
^
2 errors
这让我想到了一个问题:这个编译器行为标准是否符合标准?编译器是否难以使用其他名称?