高等继续教育 / Java程序设计
正确率:100%
题型描述: 单选题
类Parent、Child定义如下: 1.public class Parent 2.{ public float aFun(float a, float b) throws 3. IOException { } 4.} 5.public class Child extends Parent{ 6. 7.} 将以下哪种方法插入行6是不合法的。( )
A.public int aFun(int a, int b)throws IOException{ }
B.public int aFun(int a, int b)throws Exception{ }
C.public float aFun(float p, float q){ }
D.float aFun(float a, float b){ }
类Parent、Child定义如下: 1.public class Parent 2.{ public float aFun(float a, float b) throws 3. IOException { } 4.} 5.public class Child extends Parent{ 6. 7.} 将以下哪种方法插入行6是不合法的。( )
A.public int aFun(int a, int b)throws IOException{ }
B.public int aFun(int a, int b)throws Exception{ }
C.public float aFun(float p, float q){ }
D.float aFun(float a, float b){ }
参考答案: