FileDocCategorySizeDatePackage
VariableTest2.javaAPI DocExample1169Tue Apr 04 18:24:44 BST 2000tuning.exception

VariableTest2.java

package tuning.exception;

public class VariableTest2
{
static int cntr;
static int[] actr = {0};
  public static void main(String[] args)
  {
    int REPEAT = 500000000;
    if (args.length == 1)
      REPEAT = Integer.parseInt(args[0]);
    int ctr;

    int tot = 0;
    long time = System.currentTimeMillis();
    for (int i = -REPEAT; i < 0; i++)
      tot += i;
    time = System.currentTimeMillis() - time;
    System.out.println("Loop local took " + time);

    tot = 0;
    time = System.currentTimeMillis();
    for (ctr = -REPEAT; ctr < 0; ctr++)
      tot += ctr;
    time = System.currentTimeMillis() - time;
    System.out.println("Method local took " + time);

    tot = 0;
    time = System.currentTimeMillis();
    for (actr[0] = -REPEAT; actr[0] < 0; actr[0]++)
      tot += actr[0];
    time = System.currentTimeMillis() - time;
    System.out.println("Loop static array took " + time);

    tot = 0;
    time = System.currentTimeMillis();
    for (cntr = -REPEAT; cntr < 0; cntr++)
      tot += cntr;
    time = System.currentTimeMillis() - time;
    System.out.println("Loop static took " + time);

  }
}