單項選擇題
public class TestA{
public void methodA() throws IOException{
//……
} }
public class TestB extends TestA{
public void methodA() throws EOFException{
//…… } }
public class TestC extends TestA{
public void methodA() throws Exception{
//…… } }
當編譯類TestC的時候,結果是哪項?()