Fifth International World Wide Web Conference
Method Signatures
Main program signature:
public static void main(String args[])
public
make visible to all packages
static
method
main
is not invoked via a class instance
void
method
main
does not return a value
String args[]
method expects an array of
String
s as an argument (
length
may be 0)
Java - An Introductory Language Tutorial
(E.A.Johnson)