Skip to main content

Section 6.7 Key Concepts

  1. The for-statement may be used for iteration
  2. Parts of a for-statement include the initialization statement, test for continuation, and increment
  3. The do-while statement may be used for iteration
  4. The key difference between a while-statement and do-while statement is at which point the test for continuation is evaluated
  5. The for-each statement may be used for iterating over elements of an ArrayList
  6. The for-each statement may be used for iterating over elements of a HashSet
  7. Iterate over the elements of a HashMap by iterating over the elements of its key set and using keys to access HashMap elements.
  8. There are limitations when using a for-each statement to iterate over a Collection including the inability to modify the collection while iterating
  9. The switch-statement is an alternative way to branch program control flow
  10. The case label is part of a switch-statement that starts a new branch when the switch expression evaluates to a value equal to the case label value
  11. The default branch handles the case when no case label values match
  12. Each code block in a switch-statement must end with a break statement, otherwise execution continues to the statements in the next case, ignoring the case label value.
  13. Stacking case labels without a break statement between is a way to execute one block of code for multiple label matches
  14. The conditional ternary operator is a way to produce different values based on the boolean value resulting from a conditional expression
  15. The ternary operator syntax (? :) has three operands
  16. The ternary operator is like an if-else-statement written and evaluated as a single expression.