给出下列代码,如何使成员变量m 被方法fun()直接访问?
class Test { private int m; public static void fun() { ... } }
A将private int m 改为protected int m
B将private int m 改为 public int m
C将private int m 改为 static int m
D将private int m 改为 int m
相关试题
-
给出下列代码,如何使成员变量m 被方法fun()直接访问? class Test { private int m; public static void fun() { ... }
-
下列程序的运行结果是: public class test{ private String[] data={10,10.5}; public void fun(){ double s
-
下列代码的执行结果是: public class Test { public static void main(String[] args) { int[] x={0,
-
下列代码编译或执行结果的描述中,正确的是: class Test{ public static void main(String args[]){ TestThread
-
下列程序中说明的公有成员是( )。 class Location{ int X; public : void init (int X, int Y); private: