黑马程序员技术交流社区
标题:
内部类访问外部局部变量
[打印本页]
作者:
夏的四季
时间:
2014-3-24 10:12
标题:
内部类访问外部局部变量
本帖最后由 夏的四季 于 2014-3-24 15:51 编辑
class Outer
{
int x =1;//外部成员变量
void show()
{
final int x = 2;//外部类的局部变量
class Inter
{
int x=3;//内部局部类中的成员变量
void show_1()
{
System.out.println("局部内部类访问外部类:::"+Outer.this.x);//局部内部类可以直接访问外部类
/*
问:怎么访问外部类的局部变量x= 2呢?
*/
}
}
new Inter().show_1();
}
}
复制代码
作者:
黄陂酷歌
时间:
2014-3-24 13:09
class Outer{
int x = 3;
private class Inner{
int x = 2;
void function(){
int x = 1;
System.out.println("innner"+x);
System.out.println("innner"+this.x);
System.out.println("innner"+Outer.this.x);
}
}
void method(){
Inner in = new Inner();
in.function();
}
}
class InnerClassDemo{
public static void main(String[] args) {
Outer out = new Outer();
out.method();
}
}
复制代码
如上代码,结果为1,2,3
原因 就近原则,当没有明确标出x所属对象获方法就就近当表明了所属对象或方法就是对应对象或方法的了
作者:
宋超2356
时间:
2014-3-24 14:01
楼上回复跟lz问的不是一个事啊~lz问的是内部类访问已带有final的外部类的方法中的局部变量...
我觉得访问不到外部类的局部变量x,等着看大神解答....
作者:
yanzhendong
时间:
2014-3-24 14:08
通过.this关键字获取那个类的句柄,.this只对内部类有效,
作者:
也许依然
时间:
2014-3-24 15:05
我感觉不能访问到,请指点
public class Test3 {
public static void main(String[] args){
// TODO Auto-generated method stub
new Outer().show();
}
}
class Outer{
int x = 1;
void show(){
final int x =2;
//System.out.println(x);
class Inner{
int x = 3;
void show_1(){
//访问的是类Inner中的变量x=3
System.out.println(x);
//this指的是new Inner 同样打印的是类Inner中的x=3
System.out.println(this.x);
//打印的是Outer中的变量x=1
System.out.println(Outer.this.x);
//要访问final int x = 2;
//是函数嵌套中变量的调用,和如下函数之间的访问一样
/*public static void main(String[] args) {
void function1(){
int x = 1;
void function2(){
int x = 2;
System.out.println(x);
}
}*/
//输出的是最近作用域的x值
}
}
new Inner().show_1();
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2