FileDocCategorySizeDatePackage
LoopWhile.javaAPI DocExample352Sat Oct 26 09:53:50 BST 2002None

Loops

public class Loops extends Object
Compile this program and dump the compiled bytecode with "javap -c" or equivalent; you will be enlightened as to the true nature of while loops compared to for loops.

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

	 		int i = 0;
	 		while (i<10) {
	 			System.out.println(i);
	 			i++;
	 		}