java – 访问匿名外部类而不存储在变量中?
作者:互联网
有没有办法访问匿名外部类? ClassName.this可以访问普通类.这不起作用,因为匿名类显然没有名称.我也尝试使用扩展类/接口(如Runnable.this),但似乎它不会以这种方式工作.
我敢肯定这可能不是最好的编码风格,我只是好奇,如果没有将外部存储在一个变量中是可能的.
例如,注意outer.this:
public class A
{
public static void main(String[] args) {
new Thread(new Runnable() {
@Override
public void run() {
new Thread(new Runnable() {
@Override
public void run() {
synchronized (outher.this) {
outher.this.notify();
}
}
}).start();
try {
synchronized (this) {
wait();
}
} catch (final InterruptedException ex) {}
}
}).start();
}
}
解决方法:
不,没有办法从任何地方访问匿名类,除了从它们内部(即不是通过此引用).或者通过显式声明的变量.
final Runnable r1 = new Runnable() {...};
Runnable r2 = new Runnable() {
public void run() {
synchronized(r1) {...}
}
};
标签:java,syntax,anonymous-class 来源: https://codeday.me/bug/20190630/1334348.html