2007/01/31 12:10pm: To answer today's question about mixing
variable types when declaring arrays, this:
int[] a, b;
declares two array reference variables, while this:
int c[], d;
makes c an array reference variable and d just a plain old int. I still
recommend not mixing arrays and normal variables in the same group of
declarations, to avoid the potential for confusion. That is, do something
along the lines of this set of declarations:
int[] e, // a great comment about this integer array
f; // another great one about this other integer array
int g, // a plain old integer
h; // yet another plain old integer