定义一个名为f1的方法,该方法有两个整型参数,返回值为两个参数的乘积,正确的定义为( )
A: public static void f1(int a,b){…}
B: public static int f1(int a,b){…}
C: public static void f1(int a,int b){…}
D: public static int f1(int a,int b){…}
A: public static void f1(int a,b){…}
B: public static int f1(int a,b){…}
C: public static void f1(int a,int b){…}
D: public static int f1(int a,int b){…}
举一反三
- 下面语句中定义静态方法,正确的是()。 A: static int f(){}; B: int static f(); C: static public int f(); D: static f();
- 下面语句中定义静态方法,正确的是()。 A: static int f(){}; B: int static f(); C: static public int f(); D: static f();
- 下面语句中定义静态方法,正确的是()。 A: static int f(){}; B: int static f(); C: static public int f(); D: static f();
- 以下是"public static void test(int x, int y)"的方法重载( ) A: public static void Test(int x) B: public static int test(int x, int y) C: public static void test(int y, int x) D: public static void test(int x, int y)
- 中国大学MOOC: 对于下面的代码,说法正确的是class A {public: A(int a = 0) { x = a; } static void f1() { y++; };private: int x; static int y;}; int main() { A::f1(); return 0;}