下面语句中定义静态变量,正确的是()。
A: static int account;
B: int static account;
C: static public int account;
D: static account;
A: static int account;
B: int static account;
C: static public int account;
D: static account;
举一反三
- 下面语句中定义静态方法,正确的是()。 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)
- Test类中声明一个整型静态成员函数fun()的正确语句是_____。 A: int static fun(); B: int fun() static; C: static int fun(); D: int Test::fun() static;