Name: sg39081 Date: 10/18/99
This problem does not occur in 1.2.x
The following program generates extra, not-needed
code in the <init> method of Test$InnerTest:
public class Test {
public static void main(String[] args) {
}
public class InnerTest {
}
}
Disassembly (using DJava):
Method public void <init>(Test)
>> max_stack=2, max_locals=2 <<
0 aload_0
1 invokespecial #4 <Method Object.<init>():void>
4 aload_0
5 aload_1
6 putfield #5 <Field Test$InnerTest.this$0:Test>
9 aload_0
10 aload_1
11 putfield #5 <Field Test$InnerTest.this$0:Test>
14 return
As you can see, the initialization of this$0 is done twice.
(Review ID: 37553)
======================================================================