The second type of statement is the control statement.
The following list illustrates some of the control statements
available in Java:
if (BooleanExpression) Statement
if (BooleanExpression) Statement else Statement
while (BooleanExpression) Statement
do Statement while (BooleanExpression)
for (Expression; BooleanExpression; Expression) Statement
break <Label>
continue <Label>
return Expression
Label: Statement
switch (IntegerExpression) {
case IntegerValue:
Statements
default:
Statements
}
In these examples reserved keywords are shown in bold.
This is all of Java that will be covered today. Next class we will discuss
new operator
this, super, final, static,
instance, and class variables)
package and import)
public, private,
protected)
We now know enough now to write a simple example.