class definition | public abstract final class nameOfClass extends Super implements Interfaces { ClassBody } | public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World!"); } } | to define a class | A definition that specifies a class and includes the class body | 1 or more constructors for the class | source file with the same name as the class and extension .java | class methods, class variables, instance methods, instance variables | Classes | definition | | class declaration, class body |