3.3.Blocks
A block is a collection of zero or more statements enclosed by balanced braces and may be employed in any context where a single statement is permissible. The utilization of blocks is demonstrated in the subsequent example, BlockDemo:
class BlockDemo { public static void main(String[] args) { boolean condition = true; if (condition) { // begin block 1 System.out.println("Condition is true."); } // end block one else { // begin block 2 System.out.println("Condition is false."); } // end block 2 } }