1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Applications and Applets
ā¢ Applications are normal programs.
ā¢ Applets run within a Web Browser
A First Java Application Program
ā¢ A user runs and interacts with a program.
ā¢ A package is a library of classes.
ā¢ A class contains methods.
ā¢ Every application has a main method.
ā¢ Objects perform actions when you call its methods.
ā¢ Variables store data.
ā¢ A data type specifies a set of values and their operations.
ā¢ A program gets, or reads, data from a user.
ā¢ Syntax is the set of grammatical rules for a language.
Writing, Compiling, and Running a Java Program
ā¢ You write a Java program.
ā¢ Each class is in a file whose name end in .java.
ā¢ You have to compile a Java program.
ā¢ Use the command javac to compile,
example: javac MyClass.java.
ā¢ Bytecode is in a file whose name ends in.class.
ā¢ Use the command java to execute,
example: java FirstProgram
Note: You write the class name, not the name of the file containing the class or its bytecode.