码迷,mamicode.com
首页 > 其他好文 > 详细

当内部类和外部类存在同名成员时,如何访问外部类的成员

时间:2018-01-28 12:47:59      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:存在   外部类   str   his   out   code   sys   访问   是什么   

打印结果是什么 答案2
public class Test {

public static void main(String[] args) {
    Outer.Inner on = new Outer().new Inner();
    on.function();
}

}

class Outer {
int x = 0 ;
class Inner{
int x = 1;
void function(){
int x =2;
System.out.println("x="+x);
}
}
}
上述程序如何访问内部类的成员变量
public class Test {

public static void main(String[] args) {
    Outer.Inner on = new Outer().new Inner();
    on.function();
}

}

class Outer {
int x = 0 ;
class Inner{
int x = 1;
void function(){
int x =2;
System.out.println("x="+this.x);
}
}
}
如何访问外部类的成员变量
public class Test {

public static void main(String[] args) {
    Outer.Inner on = new Outer().new Inner();
    on.function();
}

}

class Outer {
int x = 0 ;
class Inner{
int x = 1;
void function(){
int x =2;
System.out.println("x="+Outer.this.x);
}
}
}

当内部类和外部类存在同名成员时,如何访问外部类的成员

标签:存在   外部类   str   his   out   code   sys   访问   是什么   

原文地址:http://blog.51cto.com/13579086/2065943

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!