回答:
LocalScreen.this
指し、this
包含するクラスの。
この例はそれを説明するはずです:
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
この投稿は、こちらの記事に書き直されました。
a.this
例では定義されていません。この制約がバイトコードに当てはまるかどうかはわかりません。そうでないかもしれない。
これは、this
外部LocalScreen
クラスのインスタンスを意味します。
this
修飾子なしで書き込むと、呼び出しが含まれる内部クラスのインスタンスが返されます。
コンパイラはコードを受け取り、それを次のように実行します。
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;
?
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 {
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.##")
}
}
ハッシュコード(。##)を使用する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
ますが、匿名の新しい操作を超えています。
public class a { private class a { public void run() { System.out.println(a.this.toString()); } }
どうでしょう。a.this
内run()
を参照しなければならない囲むa
さんthis
。私は正しいですか?(これは、縮小されたコードがOSX Kindle Previewerアプリの.jar
ファイルにある方法です。私が見ているものを理解しようとしているだけです。)