public class Test { <br /> public static void main(String[] args) { <br /> int x = 0; <br /> assert (x > 0): “assertion failed”; <br /> System.out.println(“finished”); <br /> } <br /> } <br /> What is the result?()  <p> public class Test { <br /> public static void main(String[] args) { <br /> int x = 0; <br /> assert (x > 0): “assertion failed”; <br /> System.out.println(“finished”); <br /> } <br /> } <br /> What is the result?()  </p>
A、A. finished
B、B. Compilation fails.
C、C. An AssertionError is thrown.
D、D. An AssertionError is thrown and finished is output.