main method
can be put in any class.
main
creates an object of its own class. Moving main
to its own class is simple, and makes the code easier to
understand.
main makes it easier to change between
an application and an applet without
confusion. It's possible to put main
in a JApplet subclass, but again it leads
to confusion with no special advantage.
main in
any class, if you're comfortable with it.