1. public class A { <br /> 2. void A() { <br /> 3. System.out.println(“Class A”); <br /> 4. } <br /> 5. public static void main(String[] args) { <br /> 6. new A(); <br /> 7. } <br /> 8. } <br /> What is the result?()  
A、 Class A
B、 Compilation fails.
C、 An exception is thrown at line 2.
D、 An exception is thrown at line 6.
E、 The code executes with no output.