public class Foo { <br /> public static void main(String[] args) { <br /> try { <br /> return; <br /> } finally { <br /> System.out.println( “Finally” ); <br /> } <br /> } <br /> } <br /> What is the result?()
A、 Finally
B、 Compilation fails.
C、 The code runs with no output.
D、 An exception is thrown at runtime.