Java:Class.this


112

我有一个看起来像这样的Java程序。

public class LocalScreen {

   public void onMake() {
       aFuncCall(LocalScreen.this, oneString, twoString);
   }
}

是什么LocalScreen.this意思aFuncCall

Answers:


169

LocalScreen.thisthis的是封闭类。

这个例子应该解释一下:

public class LocalScreen {
    
    public void method() {
        
        new Runnable() {
            public void run() {
                // Prints "An anonymous Runnable"
                System.out.println(this.toString());
                
                // Prints "A LocalScreen object"
                System.out.println(LocalScreen.this.toString());
                
                // Won't compile! 'this' is a Runnable!
                onMake(this);
                
                // Compiles! Refers to enclosing object
                onMake(LocalScreen.this);
            }
            
            public String toString() {
                return "An anonymous Runnable!";
            }
        }.run();
    }
    
    public String toString() { return "A LocalScreen object";  }
    
    public void onMake(LocalScreen ls) { /* ... */ }
    
    public static void main(String[] args) {
        new LocalScreen().method();
    }
}

输出:

An anonymous Runnable!
A LocalScreen object

这篇文章在这里已被重写为文章。


如果您有类似的情况public class a { private class a { public void run() { System.out.println(a.this.toString()); } } ,该怎么办:我想这是同一回事。在a.thisrun()必须引用封闭 athis。我对吗?(这是OSX Kindle Previewer应用程序.jar文件中的压缩代码,我只是想了解我在看什么。)
Matt Mc

在Java中,内部类可能与其封闭类(JLS 8.1)的名称不同,因此a.this在您的示例中未定义。我不知道该约束对于字节码是否成立。也许不会。
aioobe 2015年

56

它表示this外部LocalScreen类的实例。

this没有限定符的编写将返回该调用位于其中的内部类的实例。


4
还是不太明白。与“ this”相比,将其编码为“ LocalScreen.this”有什么区别?我都测试了,编译器只接受了“ LocalScreen.this”。aFuncCall的第一个参数期望aParent类,它是“ Somethig”的父类。
约翰尼·爵士

1
我对此也很好奇。您能否提供一些有关这意味着什么的细节?我没有在上面的代码中定义任何内部类;每个Java函数是否都有与其所属的类分开的关联匿名类?
poundifdef 2011年

4
@rascher:正在使用内部类;OP并未将其包含在代码段中。仅非静态内部类支持此语法。
SLaks 2011年

很高兴您已提供指向官方Java文档的链接。
Krzysztof Tomaszewski '18

14

编译器接受代码并对其执行以下操作:

public class LocalScreen 
{
    public void method() 
    {
        new LocalScreen$1(this).run;
    }

    public String toString() 
    {
        return "A LocalScreen object"; 
    }

    public void onMake(LocalScreen ls) { /* ... */ }

    public static void main(String[] args) 
    {
        new LocalScreen().method();
    }
}

class LocalScreen$1
     extends Runnable
{
    final LocalScreen $this;

    LocalScreen$1(LocalScreen $this)
    {
        this.$this = $this;
    }

    public void run() 
    {
        // Prints "An anonymous Runnable"
        System.out.println(this.toString());

        // Prints "A LocalScreen object"
        System.out.println($this.toString());

        // Won't compile! 'this' is a Runnable!
        //onMake(this);

        // Compiles! Refers to enclosing object
        $this.onMake($this);
    }

    public String toString() 
    {
        return "An anonymous Runnable!";
    }
}

如您所见,当编译器采用内部类时,它将其转换为外部类(这是很久以前做出的设计决策,因此无需更改VM即可理解内部类)。

当创建一个非静态内部类时,它需要对父类的引用,以便它可以调用外部类的方法/访问变量。

内部类的this内部不是正确的类型,您需要获得对外部类的访问权限才能获取用于调用onMake方法的正确类型。


new LocalScreen$1().run;应该new LocalScreen$1(this).run;吗?
Diskutant 2015年

这是对该问题的低估答案。有趣的东西。

12

Class.this允许访问外部类的实例。请参见以下示例。

public class A
{
  final String name;
  final B      b;
  A(String name) {
    this.name = name;
    this.b = new B(name + "-b");
  }

  class B
  {
    final String name;
    final C      c;
    B(String name) {
      this.name = name;
      this.c = new C(name + "-c");
    }

    class C
    {
      final String name;
      final D      d;
      C(String name) {
        this.name = name;
        this.d = new D(name + "-d");
      }

      class D
      {
        final String name;
        D(String name) {
          this.name = name;
        }

        void printMe()
        {
          System.out.println("D: " + D.this.name); // `this` of class D
          System.out.println("C: " + C.this.name); // `this` of class C
          System.out.println("B: " + B.this.name); // `this` of class B
          System.out.println("A: " + A.this.name); // `this` of class A
        }
      }
    }
  }
  static public void main(String ... args)
  {
    final A a = new A("a");
    a.b.c.d.printMe();
  }
}

然后你会得到。

D: a-b-c-d
C: a-b-c
B: a-b
A: a

到目前为止,唯一得到充分解释的答案……确实是“ Class.this允许访问外部类的实例”,而不是“ Class.this允许访问外部类的this”之类的东西。一类不具有任何“本”,只有实例都以引用自己...
Żabojad

-2

我知道您的困惑。我现在遇到问题,应该有特殊的场景来区分它们。

class THIS {
  def andthen = {
    new THIS {
      println(THIS.this.## + ":inner-THIS.this.##")
      println(this.## + ":inner-this.##")
      new THIS {
        println(THIS.this.## + ":inner-inner-THIS.this.##")
        println(this.## + ":inner-this.##")
      }
    }
  }
  def getInfo = {
    println(THIS.this.## + ":THIS.this.##")
    println(this.## + ":this.##")
  }
}

您可以通过hashcode(。##)查看新THIS操作THIS.this与之间的差异this

在Scala控制台中测试:

scala> val x = new THIS
x: THIS = THIS@5ab9b447

scala> val y = x.andthen
1522119751:inner-THIS.this.##
404586280:inner-this.##
1522119751:inner-inner-THIS.this.##
2027227708:inner-this.##
y: THIS = THIS$$anon$1@181d7f28

scala> x.getInfo
1522119751:THIS.this.##
1522119751:this.##

THIS.this始终指向由val x引用的外部THIS类,但this不涉及匿名新操作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.