下面语句中定义静态方法,正确的是()。
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();
- 下面语句中定义静态方法,正确的是()。 A: static int f(){}; B: int static f(); C: static public int f(); D: static f();
- 下面语句中定义静态变量,正确的是()。 A: static int account; B: int static account; C: static public int account; D: static account;
- 定义一个名为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){…}
- 以下是"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)