62,635
社区成员




class A{
static void f(){
}
void ff(){
A a = null;
this.f();
A.f();
a.f();
}
}
void ff();
Code:
0: aconst_null
1: astore_1
2: invokestatic #16 // Method f:()V
5: invokestatic #16 // Method f:()V
8: invokestatic #16 // Method f:()V
11: return