给出下列代码,如何使成员变量m 被方法fun()直接访问?class Test... void fun(){...}}
举一反三
- 给出下列代码,如何使成员变量m 被方法fun()直接访问? class Test { private int m; public static void fun() { } }
- 下列代码中,使成员变量m能被方法fun()直接访问的是
- 给出下列代码,如何使成员变量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
- 给出如下代码: class Test{ private int m(){ ...... } public static void fun() { ...... } } 如何使成员函数m() 被函数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()
- 假设有下面代码:class E1 extends Exception{ }class E2 extends E1{ }class TestParent {public void fun(boolean f) throw E1 {}}public class Test extends TestParent{//Here}以下方法放在//Here的位置,而且编译能通过的是()。 A: public void fun(boolean f) throws E1{ } B: public void fun(boolean f) { } C: public void fun(boolean f) throws E2{ } D: public void fun(boolean f) throws E1, E2{ } E: public void fun(boolean f) throws Exception