Name: pa48320 Date: 12/01/99
Create the following source in a driectory called test:
package test;
public class testClass
{
private class Inner
{
}
public testClass()
{
Inner in = new Inner();
}
}
Compile the file from the parent directory
javac test/testClass.java
Notice that the file testClass$1.class is created in the current directory.
Not sure why this file is even created since there is also a test/testClass$Inner.class created as well.
(Review ID: 98515)
======================================================================