黑马程序员技术交流社区
标题:
作用域问题
[打印本页]
作者:
泛大陆
时间:
2015-7-28 08:54
标题:
作用域问题
6、 在打印语句中如何打印这3个x变量?
class A {
int x = 1;
class B {
int x = 2;
void func() {
int x = 3;
System.out.println( ? );
}
}
}
public class Test6 {
public static void main(String[] args) {
A.B b=new A().new B();//建立class B对象
b.func();//通过class B对象调用其方法
}
}
class A
{
int x = 1;
class B
{
int x = 2;
void func()
{
int x = 3;
System.out.println("func方法中的变量x"+x);
System.out.println("class B中的成员变量x"+this.x);
System.out.println("class A中的成员变量x"+A.this.x);
}
}
}
复制代码
作者:
122125241
时间:
2015-7-28 09:37
阔以~~~~
作者:
xiaoshaoye
时间:
2015-7-28 10:01
?这个怎么了,?
作者:
liuao2010
时间:
2015-7-28 11:31
看作用域啊。。。。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2