Jump to content

Java Programming/Keywords/if

From Wikibooks, open books for an open world

if is a Java keyword. It starts a branching statement.

The general syntax of a if, using Extended Backus-Naur Form, is

branching-statement ::= ifcondition-clausesingle-statement | block-statement [ elsesingle-statement | block-statement ] condition-clause  ::= ( Boolean Expression ) single-statement  ::= Statement block-statement  ::= {Statement [ Statements ] }

For example:

Computer code
if(booleanExpression){System.out.println("'True' statement block");}else{System.out.println("'False' statement block");}

See also:

close