public class TestA{ <br />   public void methodA() throws IOException{       <br /> //…… <br />   } } <br /> public class TestB extends TestA{ <br />   public void methodA() throws EOFException{       <br /> //……   } } <br /> public class TestC extends TestA{ <br />   public void methodA() throws Exception{       <br /> //……   } } <br /> 当编译类TestC的时候,结果是哪项?() 
A、 正常
B、 编译错误
C、 运行错误
D、 以上都不对