类 Parent 、 Child 定义如下: 1 . public class Parent{ 2 . public float aFun(float a, float b) throws IOException { } 3 . } 4 . public class Child extends Parent{ 5 . 6 . } 将以下方法插入行 5 , 不合法的是( )
A.
float aFun(float a, float b){ }
B.
public int aFun(int a, int b)throws Exception{ }
C.
public float aFun(float p, float q){ }
D.
public int aFun(int a, int b)throws IOException{ }