3.2.Statements
Sentences in natural languages are approximately equivalent to statements. A statement is a comprehensive unit of execution. The following categories of expressions can be transformed into a statement by concluding the expression with a semicolon (;).
- Assignment expressions
- Any use of
++
or--
- Method invocations
- Object creation expressions
Expression statements are the term used to describe these types of statements. Expression statements are illustrated by the following examples.
aValue = 8933.234; // assignment statement
aValue++; // increment statement
System.out.println("Hello World!"); // method invocation statement
Bicycle myBike = new Bicycle(); // object creation statement
In addition to expression statements, there are two other types of statements: control flow statements and declaration statements. A variable is declared in a declaration statement. You have already encountered numerous declaration statements:
double aValue = 8933.234; //declaration statement
Finally, the order in which statements are executed is regulated by control flow statements. In the subsequent section, “Control Flow Statements,” you will acquire knowledge regarding control flow statements.