|
When i compile my application i get files like this:
CohPlanner$1.class
CohPlanner$2.class
CohPlanner$3.class
CohPlanner.class
What does that $1 / $3 mean?
i searched on the forums but no results so i thought i asked..
Replay:What is ...$1.class
Those are inner classes; classes contained within another class, CohPlanner in this case.
|