x****y 发帖数: 30 | 1 hi,
I have one java application, consisting of two files:
Dots.java and DotsPanel.java.
After I compile them, I got the following four .class file:
Dots.class
DotsPanel.class
DotsPanel$DotsListener.class
DotsPanel$1.class
What are the last two files? what are their usage?
thanks, | h**j 发帖数: 2033 | 2 inner class and anonymous inner class
【在 x****y 的大作中提到】 : hi, : I have one java application, consisting of two files: : Dots.java and DotsPanel.java. : After I compile them, I got the following four .class file: : Dots.class : DotsPanel.class : DotsPanel$DotsListener.class : DotsPanel$1.class : What are the last two files? what are their usage? : thanks,
|
|