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