logo - 刷刷题
下载APP
【简答题】

请在每条横线处填写一个语句,使程序的功能完整,且输出结果为9 1 1。 注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。 源程序文件代码清单如下: public class Outer { public static void main(String args[]) { Outer i=new Outer(); i.taskInner(); } public class Inner { private int size; public void doSomething(int size) { ______//访问局部变量 this.size++;//访问内部类的成员变量 ______//访问外部类的成员变量 System.out.println(size+" "+this.size+" "+Outer.this.size); } } public void taskInner() { ______ k.doSomething(8); } private static int size; }

举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】计算机的编译系统主要是将源程序翻译成().

A.
机器语言系统
B.
系统程序
C.
目标程序
D.
数据库系统

【单选题】Password is a secret series of 5 that enables a user to access a file, computer, or program. On multi-user systems, each user must enter his or her password before the computer will respond to 6 ....

A.
在函数内只能访问局部变量,而不能访问全局变量
B.
局部变量与全局变量的名字不得相同
C.
若一个函数被多次调用,则其定义的局部变量必定分配同一个存储单元
D.
函数中定义的局部变量与全局变量同名时,在函数内引用的是局部变量