A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© kunwenli 中级黑马   /  2016-5-23 23:57  /  603 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


  1. class Outer {
  2.         public int num = 10;
  3.                  class Inner {
  4.                          public int num = 20;
  5.                          public void show() {
  6.                                  int num = 30;
  7.                                  System.out.println(?);
  8.                                  System.out.println(??);
  9.                                  System.out.println(???);
  10.                         }
  11.                 }
  12. }
  13. class InnerClassTest {
  14.          public static void main(String[] args) {
  15.                  Outer.Inner oi = new Outer().new Inner();
  16.                  oi.show();
  17.         }       
  18. }
复制代码

6 个回复

倒序浏览
num
this.num
Outer.this.num
回复 使用道具 举报
都没把问题写出来呀
回复 使用道具 举报
问题,都没写出来。。。 谁知道你是要干嘛?
回复 使用道具 举报
this.num
num
Outer.num
回复 使用道具 举报
如果输出30,20,10的话是
num
this.num
Outer.this.num
回复 使用道具 举报
num(就近原则)
this.num(访问所在类对象的引用,即Inner类中,show方法外的num)
Outer.this.num(访问Outer类中的本类对象的引用)
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马