Class Definition
public class Welcome extends Applet {
-
- “public” indicates that this class is accessible
- “class” indicates that a new type of thing, a new class,is being defined
- “Welcome” is the name of this new class
- “extends” indicates that the new class is being built on top of some already existing class
- “Applet” is the name of the already existing class
- “{“ indicates the beginning of the body of the class definition. “}” will signal the end of the body.