The empty Java program
class empty
{
public static void main(String arg[ ])
{
}
}
The one and
only class of this program
The main method for this class (called at start-up).
External arguments for this method.
Makes this
method accessible from the outside.
Says that this
method depends only on the class, not any specific object.
Result type of
this method (none).