• 2022-06-18
    类Test1、Test2定义如下:
    A: public  class  Test1
    B: { public  float  aMethod(float a,float b) throws
    C: IOException {      }
    D: }
    E: public  class  Test2  extends  Test1{
    F:
    G: } 将以下哪种方法插入行6是不合法的。
    H: float  aMethod(float  a,float  b){ }
    I: public  int  aMethod(int a,int b)throws  Exception{ }
    J: public  float  aMethod(float  p,float q){ }
    K: 都不对
  • 举一反三