Java
Programming Language Terms
Java
programs are made up of classes.
Classes
are made up of local variables and methods.
Methods
are made up of statements.
Statements
are made up of expressions.
Expressions
can be made up of a combination of literals, variables, and operators.
An operator is a symbol used to control
how the terms of an expression are to be evaluated or manipulated. There are arithmetic operators, relational
operators, logical operators, bitwise operators, and assignment operators.
A variable is a named placeholder where
a value is stored during program execution.
A literal is a value that can be assigned
to a value data type variable.
An expression is a statement or part of a
statement whos variable and literal terms resolve to a specific value.
A method contains executable Java
code. Java programs run methods to
"do their thing."