• 2022-06-14
    下面那几个函数是public void method(){̷}的重载函数?
    A: public void method( int m){}
    B: public int method(){}
    C: public void method2(){}
    D: public int method(int m,float f ){}
  • A

    内容

    • 0

      下面哪几个函数是public void example(){...}的重载函数? A: public void example( int m){...} B: public int example(){...} C: public void example2(){...} D: public int example (int m, float f){...}

    • 1

      以下选项可替换题目中的//1而不产生编译错误的是( )。 public abstract class MyClass{ public int constInt = 5; //1 public void method(){ } } A: public abstract void method(int a); B: constInt = constInt + 5; C: public int method(); D: public abstract void anotherMethod();

    • 2

      下面那几个函数是public void method(){̷}的重载函数?

    • 3

      在下列方法定义中,方法头不正确的是( )。 A: public int method( ){...} B: public static int method(double y){...} C: void method(double d){...} D: public static method(double a){...}

    • 4

      为A类的一个有一int形式参数a无返回值的方法method书写方法头,使得使用类名就可以调用它,该方法头的形式为( )。 A: static void method( ) B: public void method(int a ) C: static void method( int a) D: public static method(int a )