Basic HTML version of Foils prepared May 12 1996

Foil 44 Java Language -- Control Flow I

From CRPC Lectures on Java Language Applets Graphics CRPC Annual Meeting Tutorial -- May 14,1996. by Geoffrey C. Fox


1 if(some boolean expression) { .. }
2 else if(another boolean) { .. }
3 else { ... }
4 while(any boolean) { /* Do Stuff */ }
5 do { /* What to do */ } while(another boolean);
6 for(expression1; booleanexpression ; expression2) { ...}
7 naturally starts with expression1, applies expression2 at end of each loop, and continues as long as booleanexpression true
8 switch (expression) { /* Just as in C */
9 case Constant1: /* Do following if expression=Constant1 */
10 /* Bunch of Stuff */
11 break;
12 case Constant2: /* Do following if expression=Constant2 */
13 /* Bunch of Stuff */
14 break; /* ....... */
15 default:
16 /* Bunch of Stuff */
17 break;
18 }

in Table To:


Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sun Dec 14 1997