Statements – Declarations

3.3 Statements Statements in Java can be grouped into various categories. Variable declarations, optionally specified with an initialization expression, are called declaration statements (p. 102). Other basic forms of statements are control flow statements (Chapter 4, p. 151) and expression statements. An expression statement is an expression terminated by a semicolon (;). Any value returned … Read more