<< Chapter < Page | Chapter >> Page > |
Revised: Mon Mar 28 15:04:52 CDT 2016
This page is included in the following Books:
Java supports several different statements designed to alter or control the logical flow of the program. This module explores those statements.
I recommend that you open another copy of this module in a separate browser window and use the following links to easily find and view the Figuresand Listings while you are reading about them.
The first step
The first step in learning to use a new programming language is usually to learn the foundation concepts such as variables, types, expressions,flow-of-control, etc. This module concentrates on flow-of-control .
What is flow of control?
Java supports several different kinds of statements designed to alter or control the logical flow of the program.
The ability to alter the logical flow of the program is often referred to as Flow of Control .
Statements that support flow of control
Figure 1 lists the statements supported by Java for controlling the logical flow of theprogram.
Figure 1 . Statements that support flow of control. |
---|
Statement Type
if-else selectionswitch-case selection
for loopfor-each loop
while loopdo-while loop
try-catch-finally exception handlingthrow exception handling
break miscellaneouscontinue miscellaneous
label: miscellaneousreturn miscellaneous
goto reserved by Java but not supported |
We've seen the while statement in earlier modules. Several of the programs in earlier modules contained a while statement designed to control the logical flow of the program.
Notification Switch
Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?