Beginning a Class Definition
In this lesson, we will look at the general outline of the syntax for the Greeter class.
We'll cover the following...
Defining the class Greeter
The definition of the class Greeter
has the following form:
public class Greeter
{
. . .
} // End Greeter
The access modifier public
indicates the class’s availability. All clients may use this class. Next is the reserved word class
and the name of the class. This initial portion of the ...