Specifications
Sun Services
Java™ Programming Language
Module 3, slide 6 of 37
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
Semicolons, Blocks, and White Space
•Astatement is one or more lines of code terminated by
a semicolon (;):
totals = a + b + c
+ d + e + f;
•Ablock is a collection of statements bound by opening
and closing braces:
{
x = y + 1;
y = x + 1;
}










