Java Programming/Keywords/else
From Wikibooks, open books for an open world
else is a Java keyword. It is an optional part of a branching statement. It starts the 'false' statement block.
The general syntax of a if, using Extended Backus-Naur Form, is
branching-statement ::=ifcondition-clause single-statement | block-statement [elsesingle-statement | block-statement ] condition-clause ::=(Boolean Expression)single-statement ::= Statement block-statement ::={Statement [ Statement ]}
For example:
|
if ( expression ) {
System.out.println("'True' statement block"); } else { System.out.println("'False' statement block"); } |
See also:
This page may need to be