Order of Execution
Also note that the statements on the previous page are computed in the order that you list them. This is true within each method. A Java program is a collection of methods - each is “called” to compute its statements.
public class MyApplet extends Applet
{ /* statements go here */ }
public void helpermethod ( )
{ /* statements go here */ }