Possible Duplicate:
Java Class Files filename$1.class… etc Question
I wrote a batch file to compile the java program and execute it. When I open the file location (via GUI), I see many .class files of the same file.
For example, say I have a file called "acView.java"
I see 3 compiled .class files - "acView$1.class" "acView$2.class" and "acView.class"
What do the $1 and $2 stand for? Why are they present?
The .java file is a JFrame if that's important.